From a799303eb3070453f083e67ca03f08f68d482b31 Mon Sep 17 00:00:00 2001 From: Arne Teuke Date: Wed, 26 Feb 2025 00:37:16 +0100 Subject: [PATCH] adding test --- manifests/main/config.pp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/manifests/main/config.pp b/manifests/main/config.pp index 749593c..61eb9c0 100644 --- a/manifests/main/config.pp +++ b/manifests/main/config.pp @@ -10,7 +10,9 @@ class puppet_cd::main::config ( # test # Debug all facts - notify { "All facts: ${facts} | grep fqdn": } + notify { "All facts: ${facts} ": } + # fqdn + notify { "All facts: ${facts} ": } #if $facts['fqdn'] == $server_facts['servername'] { @@ -26,6 +28,6 @@ class puppet_cd::main::config ( #} # Notify the node's FQDN -# notify { "This node's FQDN is ${facts['fqdn']}": } +notify { "This node's FQDN is ${facts['fqdn']}": } }