From 0551db1cd056bec3533d5ffa810c918714a5b978 Mon Sep 17 00:00:00 2001 From: necro-nemesis Date: Mon, 23 Sep 2019 19:41:33 -0400 Subject: [PATCH] Remove resolvconf symlink --- installers/common.sh | 4 ++++ installers/raspbian.sh | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/installers/common.sh b/installers/common.sh index b92ba94..2552db6 100755 --- a/installers/common.sh +++ b/installers/common.sh @@ -371,6 +371,10 @@ function install_complete() { echo "Installation reboot aborted." exit 0 fi + echo -n "Shutting down" + echo -n "Allow a minute for reinitialization" + echo -n "Then connect to SSID loki-access" + sleep 8 sudo shutdown -r now || install_error "Unable to execute shutdown" } diff --git a/installers/raspbian.sh b/installers/raspbian.sh index 80040be..39bb6b7 100755 --- a/installers/raspbian.sh +++ b/installers/raspbian.sh @@ -25,8 +25,8 @@ function check_for_networkmananger() { echo "Network Manager found. Replacing with DHCPCD" sudo apt-get -y purge network-manager sudo apt-get -y install dhcpcd5 - sudo rm /etc/resolv.conf - sudo ln -s ../run/resolvconf/resolv.conf /etc/resolv.conf + # sudo rm /etc/resolv.conf + # sudo ln -s ../run/resolvconf/resolv.conf /etc/resolv.conf fi }