mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-14 09:29:15 +00:00
10 lines
232 B
Plaintext
10 lines
232 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# mynode-stop-services
|
||
|
# This script needs to be run with sudo
|
||
|
# It is intended to stop all mynode services (minus the web UI)
|
||
|
set -e
|
||
|
|
||
|
source /usr/share/mynode/mynode_config.sh
|
||
|
|
||
|
/usr/bin/mynode_stop_critical_services.sh
|