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

100 lines
3.2 KiB
Text
Raw Normal View History

2018-04-03 19:00:18 +02:00
#!/bin/bash
#=================================================
# GENERIC STARTING
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2021-08-30 23:30:41 +02:00
ynh_script_progression --message="Loading installation settings..."
2018-04-03 19:00:18 +02:00
app=$YNH_APP_INSTANCE_NAME
2021-08-30 23:30:41 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
port=$(ynh_app_setting_get --app=$app --key=port)
2021-08-30 23:49:05 +02:00
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
db_user=$db_name
2021-08-31 12:38:55 +02:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2018-04-03 19:00:18 +02:00
#=================================================
# STANDARD REMOVE
#=================================================
2021-08-30 23:30:41 +02:00
# REMOVE SERVICE INTEGRATION IN YUNOHOST
2018-04-03 19:00:18 +02:00
#=================================================
2021-08-30 23:49:05 +02:00
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
2021-08-30 23:30:41 +02:00
if ynh_exec_warn_less yunohost service status $app >/dev/null
2018-04-03 19:00:18 +02:00
then
2021-08-30 23:30:41 +02:00
ynh_script_progression --message="Removing $app service..."
2018-04-03 19:00:18 +02:00
yunohost service remove $app
fi
#=================================================
2021-08-30 23:30:41 +02:00
# STOP AND REMOVE SERVICE
2018-04-03 19:00:18 +02:00
#=================================================
2021-08-30 23:30:41 +02:00
ynh_script_progression --message="Stopping and removing the systemd service..."
2018-04-03 19:00:18 +02:00
2021-08-30 23:30:41 +02:00
# Remove the dedicated systemd config
ynh_remove_systemd_config
2018-04-03 19:00:18 +02:00
2021-08-30 23:49:05 +02:00
#=================================================
# REMOVE THE MYSQL DATABASE
#=================================================
ynh_script_progression --message="Removing the MySQL database..."
# Remove a database if it exists, along with the associated user
ynh_mysql_remove_db --db_user=$db_user --db_name=$db_name
2018-04-03 19:00:18 +02:00
#=================================================
2021-08-30 23:30:41 +02:00
# REMOVE DEPENDENCIES
2018-04-03 19:00:18 +02:00
#=================================================
2021-08-30 23:30:41 +02:00
ynh_script_progression --message="Removing dependencies..."
2018-04-03 19:00:18 +02:00
2021-08-30 23:30:41 +02:00
# Remove NodeJS
ynh_remove_nodejs
2018-04-03 19:00:18 +02:00
#=================================================
2021-08-30 23:30:41 +02:00
# REMOVE APP MAIN DIR
2018-04-03 19:00:18 +02:00
#=================================================
2021-08-30 23:30:41 +02:00
ynh_script_progression --message="Removing $app main directory..."
2018-04-03 19:00:18 +02:00
2021-08-30 23:30:41 +02:00
# Remove the app directory securely
ynh_secure_remove --file="$final_path"
2018-04-03 19:00:18 +02:00
#=================================================
2021-08-30 23:30:41 +02:00
# REMOVE NGINX CONFIGURATION
2018-04-03 19:00:18 +02:00
#=================================================
2021-08-30 23:30:41 +02:00
ynh_script_progression --message="Removing NGINX web server configuration..."
2018-04-03 19:00:18 +02:00
2021-08-30 23:30:41 +02:00
# Remove the dedicated NGINX config
ynh_remove_nginx_config
2018-04-03 19:00:18 +02:00
#=================================================
# REMOVE THE LOGROTATE CONFIG
#=================================================
ynh_remove_logrotate # Remove the app-specific logrotate config
#=================================================
2021-08-30 23:30:41 +02:00
# GENERIC FINALIZATION
#=================================================
# REMOVE DEDICATED USER
2018-04-03 19:00:18 +02:00
#=================================================
2021-08-30 23:30:41 +02:00
ynh_script_progression --message="Removing the dedicated system user..."
2018-04-03 19:00:18 +02:00
2021-08-30 23:30:41 +02:00
# Delete a system user
ynh_system_user_delete --username=$app
2018-04-03 19:00:18 +02:00
#=================================================
2021-08-30 23:30:41 +02:00
# END OF SCRIPT
2018-04-03 19:00:18 +02:00
#=================================================
2021-08-30 23:30:41 +02:00
ynh_script_progression --message="Removal of $app completed"