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 }