From 47f32c058325c0a2c6306986c6f603c9626c70ef Mon Sep 17 00:00:00 2001
From: Bob Mottram <bob@freedombone.net>
Date: Mon, 19 Jun 2017 15:27:21 +0100
Subject: [PATCH] systemd method of shutting down

---
 src/freedombone-controlpanel | 2 +-
 src/freedombone-utils-final  | 2 +-
 src/freedombone-utils-wifi   | 1 +
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/freedombone-controlpanel b/src/freedombone-controlpanel
index 82be334bc..d11287694 100755
--- a/src/freedombone-controlpanel
+++ b/src/freedombone-controlpanel
@@ -1369,7 +1369,7 @@ function shut_down_system {
         1) return;;
         255) return;;
     esac
-    shutdown now
+    systemctl poweroff
 }
 
 function restart_system {
diff --git a/src/freedombone-utils-final b/src/freedombone-utils-final
index ddd17ae19..8b30da4a6 100755
--- a/src/freedombone-utils-final
+++ b/src/freedombone-utils-final
@@ -73,7 +73,7 @@ $(get_ssh_server_key)
             echo $'Shutting down the system. Detatch the ethernet cable, attach wifi dongle, then power on again.'
             echo ''
             ${PROJECT_NAME}-logging off
-            shutdown now
+            systemctl poweroff
             return
         fi
         echo $'Turning off logging'
diff --git a/src/freedombone-utils-wifi b/src/freedombone-utils-wifi
index b46e8b5be..3b84ecff2 100755
--- a/src/freedombone-utils-wifi
+++ b/src/freedombone-utils-wifi
@@ -41,6 +41,7 @@ ATHEROS_WIFI_REPO="https://github.com/qca/open-ath9k-htc-firmware.git"
 
 # Debian stretch has a problem where the formerly predictable wlan0 and eth0
 # device names get assigned random names. This is a hacky workaround.
+# Also adding net.ifnames=0 to kernel options on bootloader may work.
 function enable_predictable_device_names {
     if [ $rootdir ]; then
         chroot "$rootdir" ln -s /dev/null /etc/udev/rules.d/80-net-setup-link.rules
-- 
GitLab