1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jirafeau_ynh.git synced 2024-09-03 19:35:53 +02:00
jirafeau_ynh/scripts/remove

93 lines
3 KiB
Text
Raw Normal View History

2014-01-13 13:50:38 +01:00
#!/bin/bash
2017-09-28 18:02:10 +02:00
#=================================================
2022-07-28 23:32:49 +02:00
# GENERIC START
2017-09-28 18:02:10 +02:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-02-13 21:13:59 +01:00
source _common.sh
2017-09-28 18:02:10 +02:00
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
ynh_script_progression --message="Loading installation settings..." --weight=1
2017-09-28 18:02:10 +02:00
app=$YNH_APP_INSTANCE_NAME
2014-01-13 13:50:38 +01:00
2019-05-06 14:14:36 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2021-11-04 20:15:49 +01:00
datadir=$(ynh_app_setting_get --app=$app --key=datadir)
2017-09-28 18:02:10 +02:00
#=================================================
# STANDARD REMOVE
#=================================================
2022-07-28 23:32:49 +02:00
# REMOVE APP MAIN DIR
2017-09-28 18:02:10 +02:00
#=================================================
2021-11-04 20:15:49 +01:00
ynh_script_progression --message="Removing app main directory..." --weight=2
2017-09-28 18:02:10 +02:00
# Remove the app directory securely
2019-05-06 14:14:36 +02:00
ynh_secure_remove --file="$final_path"
2017-09-28 18:02:10 +02:00
2021-11-22 13:48:31 +01:00
#=================================================
# REMOVE DATA DIR
#=================================================
# Remove the data directory if --purge option is used
if [ "${YNH_APP_PURGE:-0}" -eq 1 ]
then
ynh_script_progression --message="Removing app data directory..." --weight=1
ynh_secure_remove --file="$datadir"
fi
2017-09-28 18:02:10 +02:00
#=================================================
2022-07-28 23:32:49 +02:00
# REMOVE NGINX CONFIGURATION
2017-09-28 18:02:10 +02:00
#=================================================
ynh_script_progression --message="Removing NGINX web server configuration..." --weight=2
2017-09-28 18:02:10 +02:00
# Remove the dedicated NGINX config
2017-09-28 18:02:10 +02:00
ynh_remove_nginx_config
#=================================================
2022-07-28 23:32:49 +02:00
# REMOVE PHP-FPM CONFIGURATION
2017-09-28 18:02:10 +02:00
#=================================================
ynh_script_progression --message="Removing PHP-FPM configuration..." --weight=2
2017-09-28 18:02:10 +02:00
# Remove the dedicated PHP-FPM config
2017-09-28 18:02:10 +02:00
ynh_remove_fpm_config
2022-05-23 12:39:33 +02:00
#=================================================
# REMOVE DEPENDENCIES
#=================================================
ynh_script_progression --message="Removing dependencies..." --weight=3
# Remove metapackage and its dependencies
ynh_remove_app_dependencies
2020-03-03 20:23:09 +01:00
#=================================================
2022-07-28 23:32:49 +02:00
# SPECIFIC REMOVE
2020-03-03 20:23:09 +01:00
#=================================================
2022-07-28 23:32:49 +02:00
# REMOVE VARIOUS FILES
#=================================================
ynh_script_progression --message="Removing various files..." --weight=1
2020-03-03 20:23:09 +01:00
2022-07-28 23:32:49 +02:00
# Remove a cron file
2020-03-03 20:23:09 +01:00
ynh_secure_remove --file="/etc/cron.d/$app"
2017-09-28 18:02:10 +02:00
#=================================================
2022-07-28 23:32:49 +02:00
# GENERIC FINALIZATION
2017-09-28 18:02:10 +02:00
#=================================================
# REMOVE DEDICATED USER
#=================================================
ynh_script_progression --message="Removing the dedicated system user..." --weight=2
2014-01-13 13:50:38 +01:00
2017-09-28 18:02:10 +02:00
# Delete a system user
2019-05-06 14:14:36 +02:00
ynh_system_user_delete --username=$app
2019-02-17 20:55:13 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2021-11-04 20:15:49 +01:00
ynh_script_progression --message="Removal of $app completed" --last