summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2010-08-07 02:42:18 +0200
committermh <mh@immerda.ch>2010-08-07 02:42:18 +0200
commit9411ac8374d84e567e2a73b133f45a0794e28ecc (patch)
tree268ae0f657b54904329de4fce929624f28b04130
parent3cf4f620ea96162e989f883ba65cf09bed29fcb0 (diff)
remove unnecessary fileserver variable (#2460)
-rw-r--r--manifests/centos.pp8
1 files changed, 4 insertions, 4 deletions
diff --git a/manifests/centos.pp b/manifests/centos.pp
index 14eb907..f22b322 100644
--- a/manifests/centos.pp
+++ b/manifests/centos.pp
@@ -1,7 +1,7 @@
class stunnel::centos inherits stunnel::linux {
file{'/etc/init.d/stunnel':
- source => "puppet://$server/modules/stunnel/${operatingsystem}/stunnel.init",
+ source => "puppet:///modules/stunnel/${operatingsystem}/stunnel.init",
require => Package['stunnel'],
before => Service['stunnel'],
owner => root, group => 0, mode => 0755;
@@ -19,9 +19,9 @@ class stunnel::centos inherits stunnel::linux {
}
file{'/etc/stunnel/stunnel.conf':
- source => [ "puppet://$server/modules/site-stunnel/${fqdn}/stunnel.conf",
- "puppet://$server/modules/site-stunnel/stunnel.conf",
- "puppet://$server/modules/stunnel/${operatingsystem}/stunnel.conf" ],
+ source => [ "puppet:///modules/site-stunnel/${fqdn}/stunnel.conf",
+ "puppet:///modules/site-stunnel/stunnel.conf",
+ "puppet:///modules/stunnel/${operatingsystem}/stunnel.conf" ],
require => Package['stunnel'],
notify => Service['stunnel'],
owner => root, group => 0, mode => 0600;