Drop network manager requirement (Fixes: #11)

This commit is contained in:
Mario Limonciello 2019-05-22 15:36:19 -05:00
parent e64d7fa9a0
commit a13e8c5181
2 changed files with 0 additions and 2 deletions

View file

@ -19,7 +19,6 @@ dbus
```
apparmor-utils
network-manager
```
## Run

View file

@ -19,7 +19,6 @@ command -v curl > /dev/null 2>&1 || { echo "[Error] Please install curl first";
command -v avahi-daemon > /dev/null 2>&1 || { echo "[Error] Please install avahi first"; exit 1; }
command -v dbus-daemon > /dev/null 2>&1 || { echo "[Error] Please install dbus first"; exit 1; }
command -v apparmor_parser > /dev/null 2>&1 || echo "[Warning] No AppArmor support on host."
command -v nmcli > /dev/null 2>&1 || echo "[Warning] No NetworkManager support on host."
function version_gt() { test "$(printf '%s\n' "$@" | sort -V | head -n 1)" != "$1"; }