mirror of
https://github.com/YunoHost-Apps/homeassistant_ynh.git
synced 2024-09-03 19:26:16 +02:00
66 lines
2.3 KiB
Bash
66 lines
2.3 KiB
Bash
#!/bin/bash
|
|
# to test the functionnality :
|
|
# yunohost app remove homeassistant --purge
|
|
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
# retrieve arguments
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
port=$(ynh_app_setting_get --app=$app --key=port)
|
|
final_path=$(ynh_app_setting_get --app="$app" --key=final_path)
|
|
data_path=$(ynh_app_setting_get --app="$app" --key=data_path)
|
|
log_file=$(ynh_app_setting_get --app="$app" --key=log_file)
|
|
path_url=$(ynh_app_setting_get --app="$app" --key=path_url)
|
|
python=$(ynh_app_setting_get --app="$app" --key=python)
|
|
|
|
# Remove a service from the admin panel, added by `yunohost service add`
|
|
if ynh_exec_warn_less yunohost service status "$app" >/dev/null ; then
|
|
ynh_script_progression --message="Removing $app service integration..."
|
|
yunohost service remove "$app"
|
|
fi
|
|
|
|
# remove systemd service
|
|
ynh_script_progression --message="Stopping and removing the systemd service..."
|
|
ynh_remove_systemd_config --service="$app"
|
|
|
|
# remove the app-specific logrotate config
|
|
ynh_script_progression --message="Removing logrotate configuration..."
|
|
ynh_remove_logrotate
|
|
|
|
# remove metapackage and its dependencies
|
|
ynh_script_progression --message="Removing dependencies..."
|
|
ynh_remove_app_dependencies
|
|
|
|
# remove the app directory securely
|
|
ynh_script_progression --message="Removing app main directory..."
|
|
ynh_secure_remove --file="$final_path"
|
|
|
|
# remove a directory securely if --purge option is used
|
|
if [ "${YNH_APP_PURGE:-0}" -eq 1 ] ; then
|
|
ynh_script_progression --message="Removing app data directory..."
|
|
ynh_secure_remove --file="$data_path"
|
|
fi
|
|
|
|
# remove the dedicated nginx config
|
|
ynh_script_progression --message="Removing NGINX web server configuration..."
|
|
ynh_remove_nginx_config
|
|
|
|
# close port
|
|
if yunohost firewall list | grep -q "\- $port$" ; then
|
|
ynh_script_progression --message="Closing port $port..."
|
|
ynh_exec_warn_less yunohost firewall disallow TCP $port
|
|
fi
|
|
|
|
ynh_script_progression --message="Removing various files..."
|
|
# remove sudoers file
|
|
ynh_secure_remove --file="/etc/sudoers.d/$app"
|
|
# Remove the log files
|
|
ynh_secure_remove --file="$(dirname "$log_file")"
|
|
|
|
# delete a system user
|
|
ynh_script_progression --message="Removing the dedicated system user..."
|
|
ynh_system_user_delete --username="$app"
|
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|