From f2b4bac386e7476ce58f8bfec083a47e037800ca Mon Sep 17 00:00:00 2001 From: Rafael Guterres Jeffman <rjeffman@redhat.com> Date: Tue, 1 Sep 2020 12:58:31 -0300 Subject: [PATCH] Fix ansible-lint warning on molecule playbooks. Ansible best practice is to not use `latest` for the `package` module state. As we want to use it in the case of nss, this change will disable checking for this case. --- molecule/resources/playbooks/prepare-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/molecule/resources/playbooks/prepare-build.yml b/molecule/resources/playbooks/prepare-build.yml index d6523699..41f513d4 100644 --- a/molecule/resources/playbooks/prepare-build.yml +++ b/molecule/resources/playbooks/prepare-build.yml @@ -11,7 +11,7 @@ - name: Ensure nss package is updated package: name: nss - state: latest + state: latest # noqa 403 - include_role: name: ipaserver -- GitLab