From 6659be56fbfe4ab0339d4382a6f1d6078c32a7a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Mon, 14 Feb 2022 21:38:20 +0100 Subject: [PATCH] Remove unsupported old argument --log_type to yunohost service add --- scripts/install | 4 ++-- scripts/restore | 4 ++-- scripts/upgrade | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/install b/scripts/install index 2f10c97..680ee30 100644 --- a/scripts/install +++ b/scripts/install @@ -206,9 +206,9 @@ needed_ports=() # Integrate service and require to expose the ports if needed if [[ -z ${needed_ports[@]} ]]; then - yunohost service add $app --description="Jellyfin media center" --log_type="systemd" + yunohost service add $app --description="Jellyfin media center" else - yunohost service add $app --description="Jellyfin media center" --log_type="systemd" --needs_exposed_ports ${needed_ports[@]} + yunohost service add $app --description="Jellyfin media center" --needs_exposed_ports ${needed_ports[@]} fi #================================================= diff --git a/scripts/restore b/scripts/restore index e1dfdd3..db66983 100644 --- a/scripts/restore +++ b/scripts/restore @@ -163,9 +163,9 @@ needed_ports=() # Integrate service and require to expose the ports if needed if [[ -z ${needed_ports[@]} ]]; then - yunohost service add $app --description="Jellyfin media center" --log_type="systemd" + yunohost service add $app --description="Jellyfin media center" else - yunohost service add $app --description="Jellyfin media center" --log_type="systemd" --needs_exposed_ports ${needed_ports[@]} + yunohost service add $app --description="Jellyfin media center" --needs_exposed_ports ${needed_ports[@]} fi #================================================= diff --git a/scripts/upgrade b/scripts/upgrade index 490c563..5a3eb6b 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -226,9 +226,9 @@ needed_ports=() # Integrate service and require to expose the ports if needed if [[ -z ${needed_ports[@]} ]]; then - yunohost service add $app --description="Jellyfin media center" --log_type="systemd" + yunohost service add $app --description="Jellyfin media center" else - yunohost service add $app --description="Jellyfin media center" --log_type="systemd" --needs_exposed_ports ${needed_ports[@]} + yunohost service add $app --description="Jellyfin media center" --needs_exposed_ports ${needed_ports[@]} fi #=================================================