summaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2008-03-23 14:06:38 +0000
committermh <mh@immerda.ch>2008-03-23 14:06:38 +0000
commite351463a71d62cb02aac8a6c330f15e42759582f (patch)
treec82d2962f67c6aa71df4e01e6d50b53435da8c5d /manifests/init.pp
parentb95491915b1d3bd50763dfc547838e212c0a5cb8 (diff)
added php to main file
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp12
1 files changed, 12 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index c02b30e..2abdf3f 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -190,3 +190,15 @@ define apache::config::file(
notify => Service[apache],
}
}
+
+#php
+class apache::php inherits apache {
+ case $operatingsystem {
+ debian: { include php::debian }
+ centos: { include php::centos }
+ ubuntu: { include php::ubuntu }
+ gentoo: { include php::gentoo }
+ default: { include php::base }
+ }
+}
+