From 702d94563a78392e64c731f1e82b44fe83a6d2e9 Mon Sep 17 00:00:00 2001 From: "Antonio J. Delgado" Date: Fri, 21 Oct 2022 21:25:33 +0300 Subject: [PATCH] fix when --- tasks/configure.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/configure.yml b/tasks/configure.yml index c82cccb..4a3807d 100644 --- a/tasks/configure.yml +++ b/tasks/configure.yml @@ -28,7 +28,7 @@ - name: Set fact for puppet path to estimated path when not found set_fact: puppet_cmd: "/usr/local/bin/puppet" - when: which_puppet.stdout == "" or not which_puppet_stat.stat.executable or which_puppet_stat.isdir + when: which_puppet.stdout == "" or not which_puppet_stat.stat.executable or which_puppet_stat.stat.isdir - name: Obtain puppet configuration directory shell: "{{ puppet_cmd }} config print confdir"