mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-11-16 15:58:08 +00:00
11 lines
327 B
Bash
Executable file
11 lines
327 B
Bash
Executable file
#!/bin/sh
|
|
echo "[*] Stopping Haveno Server monitoring utensils"
|
|
echo ' '
|
|
echo 'This script will not remove any configuration or binaries from the system. It just stops the services.'
|
|
|
|
sleep 10
|
|
sudo systemctl stop nginx
|
|
sudo systemctl stop collectd
|
|
sudo systemctl disable nginx
|
|
sudo systemctl disable collectd
|
|
echo "[*] Done!"
|