mirror of
https://github.com/YunoHost-Apps/ethercalc_ynh.git
synced 2024-09-03 18:26:36 +02:00
15 lines
265 B
Bash
15 lines
265 B
Bash
#!/bin/bash
|
|
|
|
app="ethercalc"
|
|
name="ether"
|
|
name+="calc"
|
|
|
|
domain=$(sudo yunohost app setting $app domain)
|
|
|
|
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
|
|
sudo rm -Rf /var/log/$name/$app
|
|
sudo update-rc.d $app remove
|
|
sudo service $app stop
|
|
sudo rm /etc/init.d/$app
|
|
|
|
|