1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jellyfin_ynh.git synced 2024-09-03 19:26:29 +02:00

Remove unsupported old argument --log_type to yunohost service add

This commit is contained in:
Salamandar 2022-02-14 21:38:20 +01:00
parent 418baacd12
commit 6659be56fb
3 changed files with 6 additions and 6 deletions

View file

@ -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
#=================================================

View file

@ -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
#=================================================

View file

@ -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
#=================================================