2021-05-05 02:20:01 +02:00
|
|
|
#!/bin/sh
|
2023-03-07 01:14:00 +01:00
|
|
|
echo "[*] Stopping Haveno Server monitoring utensils"
|
2021-05-05 02:20:01 +02:00
|
|
|
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!"
|