lint: skip the linter

Do not run the linter for these 3:

* we use latest for pip docker-py package
* for ssl keys this is a false positive since the inital command is a
'shell' it'll always change
* for keystone, we must use shell since the with_items contains pipes

Signed-off-by: Sébastien Han <seb@redhat.com>
pull/3285/head
Sébastien Han 2018-10-30 17:13:20 +01:00 committed by Guillaume Abrioux
parent 55b071a114
commit cfd60411bc
3 changed files with 6 additions and 0 deletions

View File

@ -45,6 +45,8 @@
pip:
name: docker-py
state: latest
tags:
- skip_ansible_lint
- name: install docker on debian
package:

View File

@ -40,6 +40,8 @@
run_once: True
when:
- pem.changed
tags:
- skip_ansible_lint
- name: copy crt file(s) to gateway nodes
copy:

View File

@ -29,3 +29,5 @@
with_items:
- "openssl x509 -in /etc/keystone/ssl/certs/ca.pem -pubkey | certutil -d {{ radosgw_nss_db_path }} -A -n ca -t 'TCu,Cu,Tuw'"
- "openssl x509 -in /etc/keystone/ssl/certs/signing_cert.pem -pubkey | certutil -A -d {{ radosgw_nss_db_path }} -n signing_cert -t 'P,P,P'"
tags:
- skip_ansible_lint