summaryrefslogtreecommitdiff
path: root/manifests/vhost/file.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2010-08-07 02:12:18 +0200
committermh <mh@immerda.ch>2010-08-07 02:12:18 +0200
commit9a22fb94cb85f744dbb94c4056a2c3d983abd94b (patch)
tree12030d4250c5a3a18ed5f994ed1065f6c44cb8cc /manifests/vhost/file.pp
parent274f2dac531c6b1dc15545f31239fe3e2c30120c (diff)
downloadpuppet-lighttpd-9a22fb94cb85f744dbb94c4056a2c3d983abd94b.tar.gz
puppet-lighttpd-9a22fb94cb85f744dbb94c4056a2c3d983abd94b.tar.bz2
remove unnecessary fileserver variable (#2460)
Diffstat (limited to 'manifests/vhost/file.pp')
-rw-r--r--manifests/vhost/file.pp18
1 files changed, 9 insertions, 9 deletions
diff --git a/manifests/vhost/file.pp b/manifests/vhost/file.pp
index f047173..054a530 100644
--- a/manifests/vhost/file.pp
+++ b/manifests/vhost/file.pp
@@ -15,16 +15,16 @@ define lighttpd::vhost::file(
File["/etc/lighttpd/vhosts.d/${name}.conf"]{
source => $vhost_source ? {
'absent' => [
- "puppet://$server/modules/site-lighttpd/vhosts.d/$fqdn/$name.conf",
- "puppet://$server/modules/site-lighttpd/vhosts.d/$lighttpd_cluster_node/$name.conf",
- "puppet://$server/modules/site-lighttpd/vhosts.d/$operatingsystem.$lsbdistcodename/$name.conf",
- "puppet://$server/modules/site-lighttpd/vhosts.d/$operatingsystem/$name.conf",
- "puppet://$server/modules/site-lighttpd/vhosts.d/$name.conf",
- "puppet://$server/modules/lighttpd/vhosts.d/$operatingsystem.$lsbdistcodename/$name.conf",
- "puppet://$server/modules/lighttpd/vhosts.d/$operatingsystem/$name.conf",
- "puppet://$server/modules/lighttpd/vhosts.d/$name.conf"
+ "puppet:///modules/site-lighttpd/vhosts.d/$fqdn/$name.conf",
+ "puppet:///modules/site-lighttpd/vhosts.d/$lighttpd_cluster_node/$name.conf",
+ "puppet:///modules/site-lighttpd/vhosts.d/$operatingsystem.$lsbdistcodename/$name.conf",
+ "puppet:///modules/site-lighttpd/vhosts.d/$operatingsystem/$name.conf",
+ "puppet:///modules/site-lighttpd/vhosts.d/$name.conf",
+ "puppet:///modules/lighttpd/vhosts.d/$operatingsystem.$lsbdistcodename/$name.conf",
+ "puppet:///modules/lighttpd/vhosts.d/$operatingsystem/$name.conf",
+ "puppet:///modules/lighttpd/vhosts.d/$name.conf"
],
- default => "puppet://$server/$vhost_source",
+ default => "puppet:///$vhost_source",
}
}
}