summaryrefslogtreecommitdiff
path: root/manifests/gentoo
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2009-05-23 01:13:35 +0200
committermh <mh@immerda.ch>2009-05-23 01:13:35 +0200
commita47b1ea92dffb48647125f25ba6f0d3a95a1afc4 (patch)
tree3c8b50657a59199a4e22e70016360068ecfd0fe0 /manifests/gentoo
parentee128d31ea8e31a957c378e4c2a5b2a51fa647d4 (diff)
fixing location
Diffstat (limited to 'manifests/gentoo')
-rw-r--r--manifests/gentoo/module.pp30
1 files changed, 30 insertions, 0 deletions
diff --git a/manifests/gentoo/module.pp b/manifests/gentoo/module.pp
new file mode 100644
index 0000000..262a25c
--- /dev/null
+++ b/manifests/gentoo/module.pp
@@ -0,0 +1,30 @@
+define apache::gentoo::module(
+ $ensure = present,
+ $source = '',
+ $destination = ''
+){
+ $modules_dir = "$apache::gentoo::config_dir/modules.d/"
+ $real_destination = $destination ? {
+ '' => "${modules_dir}/${name}.conf",
+ default => $destination,
+ }
+ $real_source = $source ? {
+ '' => [
+ "puppet://$server/files/apache/modules.d/${fqdn}/${name}.conf",
+ "puppet://$server/files/apache/modules.d/${apache_cluster_node}/${name}.conf",
+ "puppet://$server/files/apache/modules.d/${name}.conf",
+ "puppet://$server/apache/modules.d/${operatingsystem}/${name}.conf",
+ "puppet://$server/apache/modules.d/${name}.conf"
+ ],
+ default => "puppet://$server/$source",
+ }
+ file{"modules_${name}.conf":
+ ensure => $ensure,
+ path => $real_destination,
+ source => $real_source,
+ require => [ File[modules_dir], Package[apache] ],
+ notify => Service[apache],
+ owner => root, group => 0, mode => 0644;
+ }
+}
+