From e09aa378f2a868f303302e0c2e7f06c81439f2e8 Mon Sep 17 00:00:00 2001 From: necro-nemesis Date: Mon, 10 May 2021 12:52:45 -0400 Subject: [PATCH] Replace NetworkManager with DHCPCD (Armbian) --- installers/common.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/installers/common.sh b/installers/common.sh index 32b144c..9c5c7b6 100644 --- a/installers/common.sh +++ b/installers/common.sh @@ -60,6 +60,18 @@ function update_system_packages() { install_error "No function definition for update_system_packages" } +# Replaces NetworkManger with DHCPCD (Armbian install) +function check_for_networkmananger() { + install_log "Checking for NetworkManager" + echo "Checking for Network Manager" + if [ -f /lib/systemd/system/network-manager.service ]; then + echo "Network Manager found. Replacing with DHCPCD" + sudo apt-get -y purge network-manager + sudo apt-get -y install dhcpcd5 + fi + +} + # Installs additional dependencies using system package manager function install_dependencies() { # OVERLOAD THIS