19 lines
366 B
Bash
19 lines
366 B
Bash
#!/bin/bash
|
|
cd /tmp
|
|
|
|
echo -e "\033[36m BSH GateWay Service.\033[0m"
|
|
systemctl stop bsh-gateway.service
|
|
|
|
|
|
### Uninstalling BSH GateWay
|
|
echo -e "\033[36m Uninstalling BSH GateWay.\033[0m"
|
|
|
|
rm -rf /opt/bsh-gateway/
|
|
|
|
systemctl disable bsh-gateway.service
|
|
rm /lib/systemd/system/bsh-gateway.service
|
|
systemctl daemon-reload
|
|
|
|
|
|
echo -e "\033[32m Uninstall complete!\033[0m"
|