mirror of
https://github.com/YunoHost-Apps/synapse_ynh.git
synced 2024-09-03 20:26:38 +02:00
Remove log only if purge are enabled
This commit is contained in:
parent
46fadb8c69
commit
b1d6501aaf
1 changed files with 5 additions and 1 deletions
|
@ -34,10 +34,14 @@ ynh_remove_systemd_config --service=$app-coturn
|
||||||
ynh_script_progression --message="Removing app main directory" --weight=2
|
ynh_script_progression --message="Removing app main directory" --weight=2
|
||||||
|
|
||||||
ynh_secure_remove --file=$code_dir
|
ynh_secure_remove --file=$code_dir
|
||||||
ynh_secure_remove --file=/var/log/matrix-$app
|
|
||||||
ynh_secure_remove --file=/etc/matrix-$app
|
ynh_secure_remove --file=/etc/matrix-$app
|
||||||
ynh_secure_remove --file=/etc/nginx/conf.d/${server_name}.d/${app}_server_name.conf
|
ynh_secure_remove --file=/etc/nginx/conf.d/${server_name}.d/${app}_server_name.conf
|
||||||
|
|
||||||
|
if [ "$YNH_APP_PURGE" -eq 1 ]; then
|
||||||
|
ynh_script_progression --message="Removing logs..."
|
||||||
|
ynh_secure_remove --file=/var/log/matrix-"$app"
|
||||||
|
fi
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# REMOVE NGINX CONFIGURATION
|
# REMOVE NGINX CONFIGURATION
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
Loading…
Reference in a new issue