summaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2008-04-24 15:17:42 +0000
committermh <mh@immerda.ch>2008-04-24 15:17:42 +0000
commit43328e80a5508e3ee931a7b10a9ca0667081d232 (patch)
tree2a40929c01d4e79c0e1dadeeee54a3b4f5e5d5fc /manifests/init.pp
parent558a9175bfdf9a559642be31d49264e642612d86 (diff)
added default centos file and made sources more configurable
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp5
1 files changed, 4 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 40f6c1c..32b4610 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -75,7 +75,10 @@ class apache::centos inherits apache::base{
owner => root, group => 0, mode => 0755;
}
file{"${config_dir}/conf.d/ssl.conf":
- source => "puppet://$server/apache/centos/ssl.conf",
+ source => [ "puppet://$server/files/apache/centos/${fqdn}/ssl.conf",
+ "puppet://$server/files/apache/centos/ssl.conf",
+ "puppet://$server/apache/centos/ssl.conf"
+ ],
owner => root, group => 0, mode => 0755;
}
apache::vhost::file { '00_default_centos_vhost': }