Ignore new ansible-lint pipefail rule

https://github.com/ansible/ansible-lint/pull/199 Introduces a new rule
"shell task uses pipeline without pipefail". This will require refactoring
of several tasks, add ignore to work around CI failures for now.

Change-Id: Ie39e3d1e4e1c8258e2a1db6296686c697b97eb9e
This commit is contained in:
Jill Rouleau 2019-02-14 15:16:13 -07:00
parent fe57d705b2
commit 53f6bcd4d1
1 changed files with 3 additions and 1 deletions

View File

@ -3,9 +3,11 @@
# 204: Lines should be no longer than 120 chars
# 303: Using command rather than module
# we have a few use cases where we need to use curl and rsync
# 306: shell task uses pipeline without pipefail, this requires
# refactoring, skip for now
# 503: Tasks that run when changed should likely be handlers
# this requires refactoring roles, skipping for now
SKIPLIST="204,303,503"
SKIPLIST="204,303,306,503"
pushd validations
for playbook in `find . -type f -regex '.*\.y[a]?ml'`; do