Fix installer
This commit is contained in:
parent
8049cb9528
commit
632918f508
1 changed files with 2 additions and 5 deletions
|
@ -4,9 +4,6 @@ set -e
|
|||
function error { echo -e "[Error] $*"; exit 1; }
|
||||
function warn { echo -e "[Warning] $*"; }
|
||||
|
||||
warn "This installer is no longer supported."
|
||||
warn ""
|
||||
warn "Home Assistant might work today, tomorrow maybe not."
|
||||
warn ""
|
||||
warn "If you want more control over your own system, run"
|
||||
warn "Home Assistant as a VM or run Home Assistant Core"
|
||||
|
@ -32,8 +29,8 @@ command -v jq > /dev/null 2>&1 || error "Please install jq first"
|
|||
command -v curl > /dev/null 2>&1 || error "Please install curl first"
|
||||
command -v avahi-daemon > /dev/null 2>&1 || error "Please install avahi first"
|
||||
command -v dbus-daemon > /dev/null 2>&1 || error "Please install dbus first"
|
||||
command -v nmcli > /dev/null 2>&1 || warn "No NetworkManager support on host."
|
||||
command -v apparmor_parser > /dev/null 2>&1 || warn "No AppArmor support on host."
|
||||
command -v nmcli > /dev/null 2>&1 || error "No NetworkManager support on host."
|
||||
command -v apparmor_parser > /dev/null 2>&1 || error "No AppArmor support on host."
|
||||
|
||||
|
||||
# Check if Modem Manager is enabled
|
||||
|
|
Loading…
Reference in a new issue