mirror of
https://github.com/davestephens/ansible-nas
synced 2024-11-15 08:27:19 +00:00
fix conditional
The `when:` clause had an additional`when` which needs removal to avoid failure.
This commit is contained in:
parent
0bc58c39bc
commit
3ff1f4662d
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@
|
|||
traefik.http.routers.deluge.tls.domains[0].main: "{{ ansible_nas_domain }}"
|
||||
traefik.http.routers.deluge.tls.domains[0].sans: "*.{{ ansible_nas_domain }}"
|
||||
traefik.http.services.deluge.loadbalancer.server.port: "8112"
|
||||
when: when deluge_enabled is true
|
||||
when: deluge_enabled is true
|
||||
|
||||
- name: Stop Deluge
|
||||
block:
|
||||
|
|
Loading…
Reference in a new issue