Ignore ansible-lint errors in verify script

This commit is contained in:
Stefan Dieterle 2020-10-02 13:54:11 +02:00
parent 6cc4791330
commit 35892d8306
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
- name: Verify
hosts: all
tasks:
- name: Run crontab list command
- name: Run crontab list command # noqa 301
command: crontab -l
register: crontab_list

View File

@ -2,7 +2,7 @@
- name: Verify
hosts: all
tasks:
- name: Run crontab list command
- name: Run crontab list command # noqa 301
command: crontab -l
register: crontab_list
ignore_errors: true