2016-10-05 19:44:08 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-02-12 21:53:49 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-10-05 19:44:08 +02:00
|
|
|
|
2018-02-12 21:53:49 +01:00
|
|
|
source _common.sh
|
2020-04-21 00:00:02 +02:00
|
|
|
source experimental_helpers/_ynh_add_extra_apt_repos
|
|
|
|
source experimental_helpers/ynh_install_php
|
2016-10-05 19:44:08 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2018-02-12 21:53:49 +01:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-08-24 12:54:18 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --time --weight=1
|
2016-10-05 19:44:08 +02:00
|
|
|
|
2018-02-12 21:53:49 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2019-08-24 12:54:18 +02:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
port=$(ynh_app_setting_get --app=$app --key=port)
|
|
|
|
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
|
2018-02-12 21:53:49 +01:00
|
|
|
db_user=$db_name
|
2019-08-24 12:54:18 +02:00
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
2018-02-12 16:07:11 +01:00
|
|
|
|
2019-08-24 12:54:18 +02:00
|
|
|
#=================================================
|
|
|
|
# STANDARD REMOVE
|
2018-02-12 21:53:49 +01:00
|
|
|
#=================================================
|
|
|
|
# REMOVE THE MYSQL DATABASE
|
|
|
|
#=================================================
|
2019-08-24 12:54:18 +02:00
|
|
|
ynh_script_progression --message="Removing the MySQL database..." --time --weight=1
|
2018-02-12 21:53:49 +01:00
|
|
|
|
|
|
|
# Remove a database if it exists, along with the associated user
|
2019-08-24 12:54:18 +02:00
|
|
|
ynh_mysql_remove_db --db_user=$db_user --db_name=$db_name
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removing dependencies..." --time --weight=1
|
|
|
|
|
|
|
|
# Remove metapackage and its dependencies
|
|
|
|
ynh_remove_app_dependencies
|
2020-04-06 10:54:13 +02:00
|
|
|
if [ "$(lsb_release --codename --short)" != "buster" ]; then
|
|
|
|
ynh_remove_php
|
|
|
|
fi
|
2018-02-12 21:53:49 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE APP MAIN DIR
|
|
|
|
#=================================================
|
2019-08-24 12:54:18 +02:00
|
|
|
ynh_script_progression --message="Removing app main directory..." --time --weight=1
|
2018-02-12 21:53:49 +01:00
|
|
|
|
|
|
|
# Remove the app directory securely
|
2019-08-24 12:54:18 +02:00
|
|
|
ynh_secure_remove --file="$final_path"
|
2016-10-05 19:44:08 +02:00
|
|
|
|
2018-02-12 21:53:49 +01:00
|
|
|
#=================================================
|
|
|
|
# REMOVE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2019-08-24 12:54:18 +02:00
|
|
|
ynh_script_progression --message="Removing nginx web server configuration..." --time --weight=1
|
2018-02-12 21:53:49 +01:00
|
|
|
|
|
|
|
# Remove the dedicated nginx config
|
2018-02-12 16:07:11 +01:00
|
|
|
ynh_remove_nginx_config
|
2018-02-12 21:53:49 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2019-08-24 12:54:18 +02:00
|
|
|
ynh_script_progression --message="Removing php-fpm configuration..." --time --weight=1
|
2018-02-12 21:53:49 +01:00
|
|
|
|
|
|
|
# Remove the dedicated php-fpm config
|
2018-02-12 16:07:11 +01:00
|
|
|
ynh_remove_fpm_config
|
2018-02-12 21:53:49 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REMOVE LOGROTATE CONFIGURATION
|
|
|
|
#=================================================
|
2019-08-24 12:54:18 +02:00
|
|
|
ynh_script_progression --message="Removing logrotate configuration..." --time --weight=1
|
2018-02-12 21:53:49 +01:00
|
|
|
|
|
|
|
# Remove the app-specific logrotate config
|
|
|
|
ynh_remove_logrotate
|
|
|
|
|
2019-08-24 12:54:18 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC REMOVE
|
|
|
|
#=================================================
|
|
|
|
# REMOVE THE CRON FILE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Remove a temp directory securely
|
2019-09-22 15:35:35 +02:00
|
|
|
ynh_secure_remove --file="/tmp/$app"
|
2019-09-09 00:27:33 +02:00
|
|
|
ynh_secure_remove --file="/tmp/${app}backup"
|
2019-08-24 12:54:18 +02:00
|
|
|
|
|
|
|
# Remove the log files
|
2019-09-22 15:35:35 +02:00
|
|
|
ynh_secure_remove --file="/var/log/$app"
|
2019-08-24 12:54:18 +02:00
|
|
|
|
2018-02-12 21:53:49 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# REMOVE DEDICATED USER
|
|
|
|
#=================================================
|
2019-08-24 12:54:18 +02:00
|
|
|
ynh_script_progression --message="Removing the dedicated system user..." --time --weight=1
|
2018-02-12 21:53:49 +01:00
|
|
|
|
|
|
|
# Delete a system user
|
2019-08-24 12:54:18 +02:00
|
|
|
ynh_system_user_delete --username=$app
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Removal of $app completed" --time --last
|