diff --git a/scripts/install b/scripts/install index b3e6f88..73a900d 100644 --- a/scripts/install +++ b/scripts/install @@ -112,6 +112,18 @@ chmod 750 "$install_dir" chmod -R o-rwx "$install_dir" chown -R $app:$app "$install_dir" +#================================================= +# LOGROTATE +#================================================= +ynh_script_progression --message="Configuring logrotate to manage application logfiles" --weight=1 + +# Use logrotate to manage application logfile(s) +ynh_use_logrotate --specific_user=$app +touch /var/log/$app/${app}-server.log +touch /var/log/$app/${app}-worker.log +touch /var/log/$app/${app}-beat.log +chown -R $app:$app /var/log/$app/ + #================================================= # GENERIC FINALIZATION #=================================================