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

82 lines
2.6 KiB
Text
Raw Normal View History

2014-12-09 21:00:17 +01:00
#!/bin/bash
2017-03-19 18:28:38 +01:00
#=================================================
2021-02-25 23:05:04 +01:00
# GENERIC START
2017-03-19 18:28:38 +01:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2014-12-09 21:00:17 +01:00
2017-03-19 22:50:12 +01:00
source _common.sh
2016-11-30 17:49:37 +01:00
source /usr/share/yunohost/helpers
2017-03-19 18:28:38 +01:00
#=================================================
# LOAD SETTINGS
#=================================================
2021-04-10 20:50:48 +02:00
ynh_script_progression --message="Loading installation settings..."
2017-03-19 18:28:38 +01:00
app=$YNH_APP_INSTANCE_NAME
2019-05-28 00:28:01 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
2021-03-03 20:50:33 +01:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2016-11-30 17:55:46 +01:00
2017-03-19 18:28:38 +01:00
#=================================================
# STANDARD REMOVE
#=================================================
2021-02-25 23:05:04 +01:00
# REMOVE SERVICE INTEGRATION IN YUNOHOST
2017-03-19 18:28:38 +01:00
#=================================================
2016-11-30 17:49:37 +01:00
2021-01-06 14:47:04 +01:00
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
if ynh_exec_warn_less yunohost service status $app >/dev/null
2016-11-30 17:49:37 +01:00
then
2021-04-10 20:50:48 +02:00
ynh_script_progression --message="Removing $app service integration..."
yunohost service remove $app
2016-11-30 17:49:37 +01:00
fi
2017-03-19 18:28:38 +01:00
#=================================================
2021-03-01 22:09:37 +01:00
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping a systemd service..."
2022-05-22 14:58:59 +02:00
ynh_systemd_action --service_name=$app --action="stop" --log_path="systemd"
2021-03-01 22:09:37 +01:00
#=================================================
2017-03-19 18:28:38 +01:00
# REMOVE DEPENDENCIES
#=================================================
2021-04-10 20:50:48 +02:00
ynh_script_progression --message="Removing dependencies..."
2017-03-19 18:28:38 +01:00
2019-01-13 18:07:28 +01:00
# Remove metapackage and its dependencies
2021-03-04 00:37:08 +01:00
ynh_package_autopurge $app
2017-03-19 18:28:38 +01:00
ynh_remove_app_dependencies
#=================================================
2021-02-25 23:05:04 +01:00
# REMOVE APP MAIN DIR
#=================================================
ynh_script_progression --message="Removing app main directory..."
# Remove the app directory securely
ynh_secure_remove --file="$final_path"
#=================================================
# REMOVE NGINX CONFIGURATION
2017-03-19 18:28:38 +01:00
#=================================================
2021-04-10 20:50:48 +02:00
ynh_script_progression --message="Removing NGINX web server configuration..."
2016-11-30 17:49:37 +01:00
2020-12-03 18:24:29 +01:00
# Remove the dedicated NGINX config
2019-01-13 18:07:28 +01:00
ynh_remove_nginx_config
2019-01-30 15:56:18 +01:00
2021-03-04 00:37:08 +01:00
#=================================================
# SPECIFIC REMOVE
#=================================================
# REMOVE VARIOUS FILES
#=================================================
ynh_script_progression --message="Removing various files..."
# Remove a directory securely
ynh_secure_remove --file="/etc/default/jenkins"
2019-01-30 15:56:18 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2021-04-10 20:50:48 +02:00
ynh_script_progression --message="Removal of $app completed"