diff options
author | Micah Anderson <micah@riseup.net> | 2012-03-14 12:17:12 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2012-03-14 12:17:12 -0400 |
commit | b4c9d401bdffe71fd085702ce2e346c9b46c179f (patch) | |
tree | 27e7fa39ae7597d125057443eeab96ad8b886971 | |
parent | 082c9eeb13a5f8d0a672bd6272ba848204c87b27 (diff) | |
download | puppet-tor-b4c9d401bdffe71fd085702ce2e346c9b46c179f.tar.gz puppet-tor-b4c9d401bdffe71fd085702ce2e346c9b46c179f.tar.bz2 |
switch legacy puppet://$server to puppet:///
-rw-r--r-- | manifests/munin.pp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/munin.pp b/manifests/munin.pp index 6e6e0fa..ac2630a 100644 --- a/manifests/munin.pp +++ b/manifests/munin.pp @@ -2,15 +2,15 @@ class tor::munin { file { "/usr/local/share/munin-plugins/tor_connections": - source => "puppet://$server/modules/tor/munin/tor_connections", + source => "puppet:///modules/tor/munin/tor_connections", mode => 0755, owner => root, group => root; "/usr/local/share/munin-plugins/tor_routers": - source => "puppet://$server/modules/tor/munin/tor_routers", + source => "puppet:///modules/tor/munin/tor_routers", mode => 0755, owner => root, group => root; "/usr/local/share/munin-plugins/tor_traffic": - source => "puppet://$server/modules/tor/munin/tor_traffic", + source => "puppet:///modules/tor/munin/tor_traffic", mode => 0755, owner => root, group => root; } |