mirror of
https://gitlab.archlinux.org/archlinux/infrastructure.git
synced 2025-01-18 08:06:16 +01:00
Add "noqa no-changed-when" tags to handlers using the command module. Perhaps it is wrong of ansible-lint to flag these, since handlers are not the best place to have conditional execution.
8 lines
199 B
YAML
8 lines
199 B
YAML
- name: Reload dovecot
|
|
service: name=dovecot state=restarted
|
|
|
|
- name: Run sievec # noqa no-changed-when
|
|
command: /usr/bin/sievec /etc/dovecot/sieve/{{ item }}
|
|
loop:
|
|
- spam-to-folder.sieve
|