mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-23 14:40:45 +01:00
add dedicated shutdown/reboot scripts
This commit is contained in:
parent
294d231c10
commit
34e2e5c455
2 changed files with 58 additions and 0 deletions
28
home.admin/XXreboot.sh
Executable file
28
home.admin/XXreboot.sh
Executable file
|
@ -0,0 +1,28 @@
|
|||
#!/bin/bash
|
||||
|
||||
# CONFIGFILE - configuration of RaspiBlitz
|
||||
configFile="/mnt/hdd/raspiblitz.conf"
|
||||
|
||||
# INFOFILE - state data from bootstrap
|
||||
infoFile="/home/admin/raspiblitz.info"
|
||||
|
||||
# MAIN MENU AFTER SETUP
|
||||
source ${infoFile}
|
||||
source ${configFile}
|
||||
|
||||
echo ""
|
||||
echo "LCD turns white when shutdown complete."
|
||||
echo "Then wait 5 seconds and disconnect power."
|
||||
echo "-----------------------------------------------"
|
||||
echo "stop lnd - please wait .."
|
||||
sudo systemctl stop lnd
|
||||
echo "stop ${network}d (1) - please wait .."
|
||||
sudo -u bitcoin ${network}-cli stop
|
||||
sleep 10
|
||||
echo "stop ${network}d (2) - please wait .."
|
||||
sudo systemctl stop ${network}d
|
||||
sleep 3
|
||||
sync
|
||||
echo "starting shutdown ..."
|
||||
sudo shutdown -r now
|
||||
exit 0
|
30
home.admin/XXshutdown.sh
Executable file
30
home.admin/XXshutdown.sh
Executable file
|
@ -0,0 +1,30 @@
|
|||
#!/bin/bash
|
||||
|
||||
# CONFIGFILE - configuration of RaspiBlitz
|
||||
configFile="/mnt/hdd/raspiblitz.conf"
|
||||
|
||||
# INFOFILE - state data from bootstrap
|
||||
infoFile="/home/admin/raspiblitz.info"
|
||||
|
||||
# MAIN MENU AFTER SETUP
|
||||
source ${infoFile}
|
||||
source ${configFile}
|
||||
|
||||
network=bitcoin
|
||||
|
||||
echo ""
|
||||
echo "LCD turns white when shutdown complete."
|
||||
echo "Then wait 5 seconds and disconnect power."
|
||||
echo "-----------------------------------------------"
|
||||
echo "stop lnd - please wait .."
|
||||
sudo systemctl stop lnd
|
||||
echo "stop ${network}d (1) - please wait .."
|
||||
sudo -u bitcoin ${network}-cli stop
|
||||
sleep 10
|
||||
echo "stop ${network}d (2) - please wait .."
|
||||
sudo systemctl stop ${network}d
|
||||
sleep 3
|
||||
sync
|
||||
echo "starting shutdown ..."
|
||||
sudo shutdown -h now
|
||||
exit 0
|
Loading…
Add table
Reference in a new issue