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

Set log_path to systemd

This commit is contained in:
ericgaspar 2021-02-28 22:26:15 +01:00
parent 8ee0a4c83a
commit 9e76187395
No known key found for this signature in database
GPG key ID: 574F281483054D44
4 changed files with 7 additions and 7 deletions

View file

@ -28,6 +28,7 @@ ynh_script_progression --message="Loading installation settings..." --weight=1
# Needed for helper "ynh_add_nginx_config"
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
port=$(ynh_app_setting_get --app=$app --key=port)
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
@ -107,7 +108,7 @@ fi
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=5
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name=$app --action=start --log_path="systemd"
#=================================================
# RELOAD NGINX

View file

@ -138,7 +138,7 @@ ynh_use_logrotate
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..." --weight=2
yunohost service add $app --description="Media server for your comics, manga and magazines" --log="/var/log/$app/$app.log"
yunohost service add $app --description="Media server for your comics, manga and magazines" --log="systemd"
#=================================================
# START SYSTEMD SERVICE
@ -146,7 +146,7 @@ yunohost service add $app --description="Media server for your comics, manga and
ynh_script_progression --message="Starting a systemd service..." --weight=1
# Start a systemd service
ynh_systemd_action --service_name=$app --action=start --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name=$app --action=start --log_path="systemd"
#=================================================
# SETUP SSOWAT
@ -159,8 +159,6 @@ then
ynh_permission_update --permission="main" --add="visitors"
fi
#ynh_permission_create --permission="api" --url "/api" --allowed="visitors" --show_tile="false" --protected="true"
#=================================================
# RELOAD NGINX
#=================================================

View file

@ -110,7 +110,7 @@ yunohost service add $app --description="Media server for your comics, manga and
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=3
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name=$app --action=start --log_path="systemd"
#=================================================
# RESTORE THE LOGROTATE CONFIGURATION

View file

@ -108,6 +108,7 @@ ynh_add_systemd_config
# Set permissions on app files
chown -R $app: $final_path
chmod +x $final_path/app.jar
#=================================================
# SETUP LOGROTATE
@ -129,7 +130,7 @@ yunohost service add $app --description="Media server for your comics, manga and
#=================================================
ynh_script_progression --message="Starting a systemd service..." --time --weight=1
ynh_systemd_action --service_name=$app --action=start --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name=$app --action=start --log_path="systemd"
#=================================================
# RELOAD NGINX