mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
Remove log only if purge are enabled
This commit is contained in:
parent
d6f66dfb7e
commit
1044767a89
1 changed files with 4 additions and 2 deletions
|
@ -29,8 +29,10 @@ pkill -f seaf-server || true
|
||||||
pkill -f ccnet-server || true
|
pkill -f ccnet-server || true
|
||||||
pkill -f seahub || true
|
pkill -f seahub || true
|
||||||
|
|
||||||
|
if [ "$YNH_APP_PURGE" -eq 1 ]; then
|
||||||
ynh_script_progression --message="Removing logs..."
|
ynh_script_progression --message="Removing logs..."
|
||||||
ynh_secure_remove --file=/var/log/seafile
|
ynh_secure_remove --file=/var/log/"$app"
|
||||||
|
fi
|
||||||
ynh_script_progression --message="Removing code..."
|
ynh_script_progression --message="Removing code..."
|
||||||
ynh_secure_remove --file=/var/www/$app
|
ynh_secure_remove --file=/var/www/$app
|
||||||
ynh_secure_remove --file=/opt/yunohost/$app
|
ynh_secure_remove --file=/opt/yunohost/$app
|
||||||
|
|
Loading…
Reference in a new issue