summaryrefslogtreecommitdiff
path: root/manifests/centos/itk.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2009-05-17 22:36:47 +0200
committermh <mh@immerda.ch>2009-05-17 22:36:47 +0200
commite9350c7225b73a3eaa31aa18eb5e3db46887c1a9 (patch)
tree6a4d06e07d20d78b38ef79e2a1a8680eadf86b21 /manifests/centos/itk.pp
parentfbb3cb7dcd8406f085e80f3f11fa873b55bd5073 (diff)
fixing class lookup and class location
Diffstat (limited to 'manifests/centos/itk.pp')
-rw-r--r--manifests/centos/itk.pp13
1 files changed, 13 insertions, 0 deletions
diff --git a/manifests/centos/itk.pp b/manifests/centos/itk.pp
new file mode 100644
index 0000000..8b55110
--- /dev/null
+++ b/manifests/centos/itk.pp
@@ -0,0 +1,13 @@
+# http://hostby.net/home/2008/07/12/centos-5-and-mpm-itk/
+class apache::centos::itk inherits apache::centos {
+ include ::apache::base::itk
+ Package['apache']{
+ name => 'httpd-itk',
+ }
+ File['/etc/sysconfig/httpd']{
+ source => [ "puppet://$server/files/apache/sysconfig/${fqdn}/httpd.itk",
+ "puppet://$server/files/apache/sysconfig/httpd.itk",
+ "puppet://$server/apache/sysconfig/${operatingsystem}/httpd.itk",
+ "puppet://$server/apache/sysconfig/httpd.itk" ],
+ }
+}