From 4d9336b709238d767e542db631d699ab486feefd Mon Sep 17 00:00:00 2001 From: Thomas <51749973+Thovi98@users.noreply.github.com> Date: Tue, 28 Feb 2023 20:42:28 +0100 Subject: [PATCH] fix --- scripts/install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install b/scripts/install index d64ca3a..709b5f3 100755 --- a/scripts/install +++ b/scripts/install @@ -98,7 +98,7 @@ ynh_add_systemd_config --service="${app}_workers" --template="${app}_workers.ser ynh_script_progression --message="Integrating service in YunoHost..." --weight=1 yunohost service add "${app}" --log="/var/log/$app/$app.log" -yunohost service add "${app}_workers" --log="/var/log/$app/$app_workers.log" +yunohost service add "${app}_workers" #================================================= # START SYSTEMD SERVICE @@ -107,7 +107,7 @@ ynh_script_progression --message="Starting a systemd service..." --weight=1 # Start a systemd service ynh_systemd_action --service_name="${app}" --action="start" --log="/var/log/$app/$app.log" --line_match="Booting worker with pid" -ynh_systemd_action --service_name="${app}_workers" --action="start" --log="/var/log/$app/$app_workers.log" --line_match="ready" +ynh_systemd_action --service_name="${app}_workers" --action="start" --log_path="systemd" --line_match="ready" #=================================================