mynode/rootfs/standard/usr/bin/mynode_stop_critical_services.sh
2021-03-30 22:09:55 -05:00

38 lines
681 B
Bash
Executable File

#!/bin/bash
# Message
echo "Stopping myNode services..."
# Mark we are shutting down
touch /tmp/shutting_down
# Stop additional services
date
systemctl stop glances lndhub netdata rtl webssh2 whirlpool dojo
date
systemctl stop btcpayserver btc_rpc_explorer specter caravan lnbits
date
systemctl stop thunderhub mempoolspace
date
# Manually stop services (backup)
if [ "$(systemctl is-active docker)" = "active" ]; then
/mnt/hdd/mynode/dojo/docker/my-dojo/dojo.sh stop || true
fi
# Stop core services
date
systemctl stop electrs loopd poold lnd quicksync
date
killall bitcoind || true
systemctl stop bitcoind
date
# Sync filesystem
sync
echo "Done stopping services."