mirror of
https://github.com/YunoHost-Apps/monica_ynh.git
synced 2024-09-03 19:46:23 +02:00
add removal of app
This commit is contained in:
parent
96f77b07a5
commit
9e58aa24bc
1 changed files with 11 additions and 13 deletions
|
@ -7,6 +7,7 @@ app=$YNH_APP_INSTANCE_NAME
|
||||||
|
|
||||||
# Source YunoHost helpers
|
# Source YunoHost helpers
|
||||||
source /usr/share/yunohost/helpers
|
source /usr/share/yunohost/helpers
|
||||||
|
source ./_common.sh
|
||||||
|
|
||||||
# Retrieve app settings
|
# Retrieve app settings
|
||||||
domain=$(ynh_app_setting_get "$app" domain)
|
domain=$(ynh_app_setting_get "$app" domain)
|
||||||
|
@ -17,20 +18,17 @@ sudo rm -rf /var/www/$app
|
||||||
# Remove nginx configuration file
|
# Remove nginx configuration file
|
||||||
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
|
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
|
||||||
|
|
||||||
### PHP (remove if not used) ###
|
# Remove cronjob
|
||||||
# If a dedicated php-fpm process is used:
|
sudo rm -f /etc/cron.d/$app
|
||||||
# sudo rm -f /etc/php5/fpm/pool.d/$app.conf
|
|
||||||
# sudo service php5-fpm reload
|
|
||||||
### PHP end ###
|
|
||||||
|
|
||||||
### MySQL (remove if not used) ###
|
# Remove PHP7.0
|
||||||
# If a MySQL database is used:
|
ynh_remove_php7
|
||||||
# # Drop MySQL database and user
|
|
||||||
# dbname=$app
|
# Remove mysql user and database
|
||||||
# dbuser=$app
|
dbname=$app
|
||||||
# ynh_mysql_drop_db "$dbname" || true
|
dbuser=$app
|
||||||
# ynh_mysql_drop_user "$dbuser" || true
|
ynh_mysql_drop_db "$dbname" || true
|
||||||
### MySQL end ###
|
ynh_mysql_drop_user "$dbuser" || true
|
||||||
|
|
||||||
# Reload nginx service
|
# Reload nginx service
|
||||||
sudo service nginx reload
|
sudo service nginx reload
|
||||||
|
|
Loading…
Add table
Reference in a new issue