diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index d1ad910..70bcca9 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -13,7 +13,7 @@ body: attributes: label: OS Version description: Please Insert the output of `lsb_release -d` - placeholder: Debian GNU/Linux 11 (bullseye) + placeholder: Debian GNU/Linux 12 (bookworm) validations: required: true - type: input @@ -21,7 +21,7 @@ body: attributes: label: System Information description: Please Insert the output of `uname -a` - placeholder: 'Linux ha-su-deb 5.10.0-9-amd64 #1 SMP Debian 5.10.70-1 (2021-09-30) x86_64 GNU/Linux' + placeholder: 'Linux ha 6.1.0-26-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.112-1 (2024-09-30) x86_64 GNU/Linux' validations: required: true - type: textarea @@ -59,6 +59,7 @@ body: - raspberrypi3-64 - raspberrypi4 - raspberrypi4-64 + - raspberrypi5-64 - tinker validations: required: true diff --git a/.github/workflows/build-deb-pr.yml b/.github/workflows/build-deb-pr.yml index 6a83c1e..c1b60f5 100644 --- a/.github/workflows/build-deb-pr.yml +++ b/.github/workflows/build-deb-pr.yml @@ -12,7 +12,7 @@ jobs: uses: actions/checkout@v4.2.0 - name: Build Debian Package in Docker run: | - docker run --rm -v $(pwd):/tmp debian:bullseye-slim bash -c \ + docker run --rm -v $(pwd):/tmp debian:bookworm-slim bash -c \ "cd /tmp \ && chmod 555 homeassistant-supervised/DEBIAN/p* \ && dpkg-deb --build --root-owner-group homeassistant-supervised" diff --git a/.github/workflows/build-deb.yml b/.github/workflows/build-deb.yml index 0c94b0e..3c6974d 100644 --- a/.github/workflows/build-deb.yml +++ b/.github/workflows/build-deb.yml @@ -14,7 +14,7 @@ jobs: uses: actions/checkout@v4.2.0 - name: Build Debian Package in Docker run: | - docker run --rm -v $(pwd):/tmp debian:bullseye-slim bash -c \ + docker run --rm -v $(pwd):/tmp debian:bookworm-slim bash -c \ "cd /tmp \ && chmod 555 homeassistant-supervised/DEBIAN/p* \ && dpkg-deb --build --root-owner-group homeassistant-supervised" diff --git a/homeassistant-supervised/DEBIAN/control b/homeassistant-supervised/DEBIAN/control index b836cc7..c85b82a 100755 --- a/homeassistant-supervised/DEBIAN/control +++ b/homeassistant-supervised/DEBIAN/control @@ -1,9 +1,9 @@ Package: homeassistant-supervised Section: base -Version: 1.8.0 +Version: 2.0.0 Priority: optional Architecture: all -Pre-Depends: curl, bash, docker-ce, dbus, network-manager, apparmor, jq, systemd, os-agent, systemd-journal-remote, systemd-resolved | systemd (>=247.3-7+deb11) +Pre-Depends: curl, bash, docker-ce, dbus, network-manager, apparmor, jq, systemd, os-agent, systemd-journal-remote, systemd-resolved Depends: bluez, cifs-utils, nfs-common Maintainer: Matheson Steplock Homepage: https://www.home-assistant.io/ diff --git a/homeassistant-supervised/DEBIAN/preinst b/homeassistant-supervised/DEBIAN/preinst index c36cf74..d20e9c1 100755 --- a/homeassistant-supervised/DEBIAN/preinst +++ b/homeassistant-supervised/DEBIAN/preinst @@ -12,7 +12,7 @@ warn "" # Check if we are running on a supported OS BYPASS_OS_CHECK=${BYPASS_OS_CHECK:-false} -supported_os=("Debian GNU/Linux 11 (bullseye)" "Debian GNU/Linux 12 (bookworm)") +supported_os=("Debian GNU/Linux 12 (bookworm)") CURRENT_OS=$(lsb_release -d | awk -F"\t" '{print $2}') os_supported=false