mirror of https://github.com/ceph/ceph-ansible.git
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
parent
55b071a114
commit
cfd60411bc
|
@ -45,6 +45,8 @@
|
|||
pip:
|
||||
name: docker-py
|
||||
state: latest
|
||||
tags:
|
||||
- skip_ansible_lint
|
||||
|
||||
- name: install docker on debian
|
||||
package:
|
||||
|
|
|
@ -40,6 +40,8 @@
|
|||
run_once: True
|
||||
when:
|
||||
- pem.changed
|
||||
tags:
|
||||
- skip_ansible_lint
|
||||
|
||||
- name: copy crt file(s) to gateway nodes
|
||||
copy:
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue