From c9bbcb1901d3f423b494f39f7c00d92444773829 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Thu, 4 Feb 2021 22:42:39 +0100 Subject: [PATCH] fix: disable logs explicitly in molecule config --- molecule/centos7/create.yml | 2 ++ molecule/centos7/molecule.yml | 1 + 2 files changed, 3 insertions(+) diff --git a/molecule/centos7/create.yml b/molecule/centos7/create.yml index 54acd05..1ce2f36 100644 --- a/molecule/centos7/create.yml +++ b/molecule/centos7/create.yml @@ -9,6 +9,8 @@ ssh_user: root ssh_path: "{{ lookup('env', 'MOLECULE_EPHEMERAL_DIRECTORY') }}/ssh_key" tasks: + - debug: + msg: "{{ molecule_no_log }}" - name: Create SSH key user: name: "{{ lookup('env', 'USER') }}" diff --git a/molecule/centos7/molecule.yml b/molecule/centos7/molecule.yml index 598201b..e652c84 100644 --- a/molecule/centos7/molecule.yml +++ b/molecule/centos7/molecule.yml @@ -19,5 +19,6 @@ provisioner: env: ANSIBLE_FILTER_PLUGINS: ${ANSIBLE_FILTER_PLUGINS:-./plugins/filter} ANSIBLE_LIBRARY: ${ANSIBLE_LIBRARY:-./library} + log: False verifier: name: testinfra