diff options
author | mh <mh@immerda.ch> | 2010-08-07 02:12:20 +0200 |
---|---|---|
committer | mh <mh@immerda.ch> | 2010-08-07 02:12:20 +0200 |
commit | a5d8b5b8b1f4d5afcb549e28bf1eef12169b81c7 (patch) | |
tree | dcd4266d6eeb8dc48ae1b69aacea53594e6560a8 /manifests/defaults | |
parent | 137cfda388841f242f51ce1e38ec37cf7a6407d9 (diff) |
remove unnecessary fileserver variable (#2460)
Diffstat (limited to 'manifests/defaults')
-rw-r--r-- | manifests/defaults/templates.pp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/manifests/defaults/templates.pp b/manifests/defaults/templates.pp index bf8a6cf..c97eee4 100644 --- a/manifests/defaults/templates.pp +++ b/manifests/defaults/templates.pp @@ -3,11 +3,11 @@ class nagios::defaults::templates { file { 'nagios_templates': path => "${nagios::defaults::vars::int_nagios_cfgdir}/conf.d/nagios_templates.cfg", - source => [ "puppet://$server/modules/site-nagios/configs/${fqdn}/nagios_templates.cfg", - "puppet://$server/modules/site-nagios/configs/${operatingsystem}/nagios_templates.cfg", - "puppet://$server/modules/site-nagios/configs/nagios_templates.cfg", - "puppet://$server/modules/nagios/configs/${operatingsystem}/nagios_templates.cfg", - "puppet://$server/modules/nagios/configs/nagios_templates.cfg" ], + source => [ "puppet:///modules/site-nagios/configs/${fqdn}/nagios_templates.cfg", + "puppet:///modules/site-nagios/configs/${operatingsystem}/nagios_templates.cfg", + "puppet:///modules/site-nagios/configs/nagios_templates.cfg", + "puppet:///modules/nagios/configs/${operatingsystem}/nagios_templates.cfg", + "puppet:///modules/nagios/configs/nagios_templates.cfg" ], notify => Service['nagios'], mode => 0644, owner => root, group => root; } |