Add noqa and disable .ansible-lint global exclusions (#6410)

This commit is contained in:
Maxime Guyot
2020-07-27 15:24:17 +02:00
committed by GitHub
parent b680cdd0e4
commit e70f27dd79
74 changed files with 163 additions and 170 deletions

View File

@@ -20,12 +20,12 @@
changed_when: False
register: fs_type
- name: run growpart
- name: run growpart # noqa 503
command: growpart /dev/sda 1
when: growpart_needed.changed
environment:
LC_ALL: C
- name: run xfs_growfs
- name: run xfs_growfs # noqa 503
command: xfs_growfs /dev/sda1
when: growpart_needed.changed and 'XFS' in fs_type.stdout