From f67e1e080143f2a4a9ac74d586740fb74a2a2948 Mon Sep 17 00:00:00 2001 From: Robert de Bock Date: Fri, 7 Feb 2020 16:32:19 +0100 Subject: [PATCH] verify.yml does not needs to pass yamllint. --- templates/ansible-lint.j2 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/templates/ansible-lint.j2 b/templates/ansible-lint.j2 index 4073642..235d114 100644 --- a/templates/ansible-lint.j2 +++ b/templates/ansible-lint.j2 @@ -1,5 +1,5 @@ {{ ansible_managed | comment }} -{% if versionymlstat.stat.exists or exceptionymlstat.stat.exists or preferencesymlstat.stat.exists %} +{% if versionymlstat.stat.exists or exceptionymlstat.stat.exists or preferencesymlstat.stat.exists or verify.stat.exists %} exclude_paths: {% if versionymlstat.stat.exists %} - ./meta/version.yml @@ -10,4 +10,7 @@ exclude_paths: {% if preferencesymlstat.stat.exists %} - ./meta/preferences.yml {% endif %} +{% if verify.stat.exists %} + - ./molecule/default/verify.yml +{% endif %} {% endif %}