summaryrefslogtreecommitdiff
path: root/manifests/host
diff options
context:
space:
mode:
authorChristian G. Warden <cwarden@xerus.org>2012-02-02 18:10:14 -0800
committerChristian G. Warden <cwarden@xerus.org>2012-02-02 18:10:14 -0800
commite2dfae5852ecdf3695a6af8ec48092ea24698390 (patch)
treed655e7fbf5a12b2a622c83411b40397e512d01e1 /manifests/host
parentd8de9540534a3801c87278435934da3c88a69e4b (diff)
Fully qualify facter variables
Diffstat (limited to 'manifests/host')
-rw-r--r--manifests/host/cgi.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/host/cgi.pp b/manifests/host/cgi.pp
index 6fd50df..283a243 100644
--- a/manifests/host/cgi.pp
+++ b/manifests/host/cgi.pp
@@ -6,10 +6,10 @@ class munin::host::cgi {
}
file{'/etc/logrotate.d/munin':
- source => [ "puppet:///modules/site-munin/config/host/${fqdn}/logrotate",
- "puppet:///modules/site-munin/config/host/logrotate.$operatingsystem",
+ source => [ "puppet:///modules/site-munin/config/host/${::fqdn}/logrotate",
+ "puppet:///modules/site-munin/config/host/logrotate.${::operatingsystem}",
"puppet:///modules/site-munin/config/host/logrotate",
- "puppet:///modules/munin/config/host/logrotate.$operatingsystem",
+ "puppet:///modules/munin/config/host/logrotate.${::operatingsystem}",
"puppet:///modules/munin/config/host/logrotate" ],
owner => root, group => 0, mode => 0644;
}