You've already forked supervised-installer
mirror of
https://github.com/armbian/supervised-installer.git
synced 2026-01-06 12:31:12 -08:00
Correct and standardize package names (#124)
* Read answer from /dev/tty * Correct package names * Revert "Read answer from /dev/tty" This reverts commit ebd6fdffe46e4781884855e0fcc22c056531a8f3. * Fix typo
This commit is contained in:
@@ -48,12 +48,12 @@ URL_APPARMOR_PROFILE="https://version.home-assistant.io/apparmor.txt"
|
||||
|
||||
# Check env
|
||||
command -v systemctl > /dev/null 2>&1 || MISSING_PACKAGES+=("systemd")
|
||||
command -v nmcli > /dev/null 2>&1 || MISSING_PACKAGES+=("NetworkManager")
|
||||
command -v apparmor_parser > /dev/null 2>&1 || MISSING_PACKAGES+=("AppArmor")
|
||||
command -v nmcli > /dev/null 2>&1 || MISSING_PACKAGES+=("network-manager")
|
||||
command -v apparmor_parser > /dev/null 2>&1 || MISSING_PACKAGES+=("apparmor")
|
||||
command -v docker > /dev/null 2>&1 || MISSING_PACKAGES+=("docker")
|
||||
command -v jq > /dev/null 2>&1 || MISSING_PACKAGES+=("jq")
|
||||
command -v curl > /dev/null 2>&1 || MISSING_PACKAGES+=("curl")
|
||||
command -v avahi-daemon > /dev/null 2>&1 || MISSING_PACKAGES+=("avahi")
|
||||
command -v avahi-daemon > /dev/null 2>&1 || MISSING_PACKAGES+=("avahi-daemon")
|
||||
command -v dbus-daemon > /dev/null 2>&1 || MISSING_PACKAGES+=("dbus")
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user