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