1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ethercalc_ynh.git synced 2024-09-03 18:26:36 +02:00
ethercalc_ynh/scripts/remove
2017-10-06 16:31:38 +02:00

25 lines
623 B
Bash

#!/bin/bash
app="ethercalc"
name="ether"
name+="calc"
domain=$(sudo yunohost app setting $app domain)
# Remove nodejs
ynh_remove_nodejs
#=================================================
# REMOVE THE MYSQL DATABASE
#=================================================
# Remove a database if it exists, along with the associated user
ynh_mysql_remove_db $db_name $db_name
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
sudo rm -Rf /var/log/$name/$app.log*
sudo update-rc.d $app remove
sudo service $app stop
sudo rm /etc/init.d/$app
sudo yunohost service remove $app
sudo rm -f /var/www/$app
sudo userdel --remove $app