1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/komga_ynh.git synced 2024-09-03 19:36:07 +02:00

fix log folder permissions

This commit is contained in:
OniriCorpe 2024-02-13 02:27:16 +01:00
parent ea1f9e2524
commit ba5cd81b3a
3 changed files with 13 additions and 0 deletions

View file

@ -43,6 +43,9 @@ ynh_script_progression --message="Configuring log rotation..." --weight=1
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
mkdir -p "/var/log/$app"
chmod 640 "/var/log/$app"
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================

View file

@ -43,6 +43,9 @@ yunohost service add $app --description="Media server for your comics, manga and
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
mkdir -p "/var/log/$app"
chmod 640 "/var/log/$app"
#=================================================
# GENERIC FINALIZATION
#=================================================

View file

@ -53,6 +53,13 @@ ynh_add_systemd_config
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
chmod 640 "/var/log/$app"
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
yunohost service add $app --description="Media server for your comics, manga and magazines" --log="/var/log/$app/$app.log"
#=================================================