From c0db11934e55b95ba3fff08d53c7be0c095fe49e Mon Sep 17 00:00:00 2001 From: albailey <Al.Bailey@windriver.com> Date: Tue, 18 Aug 2020 10:49:30 -0500 Subject: [PATCH] Fix zuul failures from new release of ansible-lint ansible-lint 4.3.0 was just released Aug 18, 2020 and introduced new checks that the existing code fails. This blocks any ansible reviews from merging. The new checks which are now being suppressed: 106 Role name does not match pattern 208 File permissions not mentioned The ansible code can be updated in a future submission to satisy these checks if desired. Change-Id: I7fdfe1537420b2358110cab176c3734007830e70 Closes-Bug: 1892065 Signed-off-by: albailey <Al.Bailey@windriver.com> --- .ansible-lint | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.ansible-lint b/.ansible-lint index de5b854fd..73a3d83f3 100644 --- a/.ansible-lint +++ b/.ansible-lint @@ -2,14 +2,16 @@ parseable: true -quiet: true +quiet: false # rulesdir: # All errors below should be cleaned up in ansible and removed from the skip_list skip_list: + - '106' # Role name {} does not match ``^[a-z][a-z0-9_]+$`` pattern - '204' # [E204] Lines should be no longer than 160 chars - '206' # [E206] Variables should have spaces before and after: {{ var_name } + - '208' # [E208] File permissions not mentioned - '301' # [E301] Commands should not change things if nothing needs doing - '303' # [E303] systemctl used in place of systemd module - '305' # [E305] Use shell only when shell functionality is required