Skip to content

Commit

Permalink
Merge pull request #2 from totaldebug/fix_deluge-web_service
Browse files Browse the repository at this point in the history
fix: removes -d which is not valid for deluge-web
  • Loading branch information
marksie1988 authored Aug 9, 2021
2 parents d2acb0a + 8f0d0ea commit 65f4a2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/deluge-web.service.j2
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ Type=simple
UMask=027

{% if enable_logging == true %}
ExecStart=/usr/bin/deluge-web -d -c {{ deluge_config_dir }} -l {{ deluge_log_dir }}web.log -L {{ deluge_log_level }}
ExecStart=/usr/bin/deluge-web -c {{ deluge_config_dir }} -l {{ deluge_log_dir }}web.log -L {{ deluge_log_level }}
{% else %}
ExecStart=/usr/bin/deluge-web -d -c {{ deluge_config_dir }}
ExecStart=/usr/bin/deluge-web -c {{ deluge_config_dir }}
{% endif %}

Restart=on-failure
Expand Down

0 comments on commit 65f4a2a

Please sign in to comment.