Add Support For Ubuntu 22.04.3 LTS

This commit is contained in:
Aleksandr Malyavin 2023-10-04 13:58:32 +03:00
parent aaed7d4370
commit 4b424016ab
2 changed files with 3 additions and 2 deletions

View file

@ -3,7 +3,8 @@ Section: base
Version: 1.5.0
Priority: optional
Architecture: all
Depends: curl, bash, docker-ce, dbus, network-manager, apparmor, jq, systemd, os-agent, systemd-journal-remote, systemd-resolved
Depends: curl, bash, docker-ce, dbus, network-manager, apparmor, jq, systemd, os-agent, systemd-journal-remote
Recommends: systemd-resolved
Maintainer: Matheson Steplock <https://mathesonsteplock.ca/>
Homepage: https://www.home-assistant.io/
Description: Home Assistant Supervised

View file

@ -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 11 (bullseye)" "Debian GNU/Linux 12 (bookworm)" "Ubuntu 22.04.3 LTS")
CURRENT_OS=$(lsb_release -d | awk -F"\t" '{print $2}')
os_supported=false