From e2b81a750954ebb33a72e07908b85876df672ca1 Mon Sep 17 00:00:00 2001 From: Bernhard Minks Date: Wed, 9 Sep 2026 14:48:13 +0200 Subject: [PATCH] make content of inifile sensitive inifile can contain credentials which should be not shown in puppet agent output / puppetboard. --- manifests/dotfile.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/dotfile.pp b/manifests/dotfile.pp index 66d59b1e..06cd2d3a 100644 --- a/manifests/dotfile.pp +++ b/manifests/dotfile.pp @@ -43,7 +43,7 @@ owner => $owner, group => $group, mode => $mode, - content => template("${module_name}/inifile.erb"), + content => Sensitive(template("${module_name}/inifile.erb")), require => Exec["create ${title}'s parent dir"], } }