65 lines
2 KiB
Bash
Executable file
65 lines
2 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC START
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
#=================================================
|
|
# STANDARD REMOVE
|
|
#=================================================
|
|
# REMOVE SERVICE INTEGRATION IN YUNOHOST
|
|
#=================================================
|
|
ynh_script_progression --message="Removing system configurations related to $app..." --weight=1
|
|
|
|
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 the dedicated systemd config
|
|
ynh_remove_systemd_config
|
|
|
|
# Remove the app-specific logrotate config
|
|
ynh_remove_logrotate
|
|
|
|
#=================================================
|
|
# SPECIFIC REMOVE
|
|
#=================================================
|
|
# REMOVE VARIOUS FILES
|
|
#=================================================
|
|
ynh_script_progression --message="Removing various files..." --weight=1
|
|
|
|
# Remove a directory securely
|
|
ynh_secure_remove --file="$config_path"
|
|
|
|
# Remove the log files
|
|
ynh_secure_remove --file="/var/log/$app"
|
|
|
|
ynh_secure_remove --file="/run/$app"
|
|
ynh_secure_remove --file="/var/lib/$app"
|
|
ynh_secure_remove --file="/usr/bin/prosody"
|
|
ynh_secure_remove --file="/usr/bin/prosodyctl"
|
|
ynh_secure_remove --file="/usr/bin/prosody-migrator"
|
|
|
|
#=================================================
|
|
# ENABLE METRONOME
|
|
#=================================================
|
|
ynh_script_progression --message="Enabling Metronome..." --weight=1
|
|
|
|
if systemctl list-unit-files metronome.service &>/dev/null
|
|
then
|
|
systemctl enable metronome.service --quiet
|
|
ynh_systemd_action --service_name="metronome" --action="start"
|
|
fi
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Removal of $app completed" --last
|