summaryrefslogtreecommitdiff
path: root/manifests/status.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2008-11-01 11:16:54 +0000
committermh <mh@immerda.ch>2008-11-01 11:16:54 +0000
commit0e75ef0a2b30bfdfc74a4c18e0ea3f4b86b34e25 (patch)
tree5170dc10e27cb1675b0ad335c08ce08414904823 /manifests/status.pp
parent22bdcda8946555836ffada43451f8daba465720f (diff)
merged with puzzle
Diffstat (limited to 'manifests/status.pp')
-rw-r--r--manifests/status.pp21
1 files changed, 21 insertions, 0 deletions
diff --git a/manifests/status.pp b/manifests/status.pp
new file mode 100644
index 0000000..0048a64
--- /dev/null
+++ b/manifests/status.pp
@@ -0,0 +1,21 @@
+# manifests/status.pp
+
+class apache::status inherits apache {
+ case $operatingsystem {
+ centos: { include apache::status::centos }
+ defaults: { include apache::status::base }
+ }
+ if $use_munin {
+ include munin::plugins::apache
+ }
+}
+
+class apache::status::base {}
+
+
+### distribution specific classes
+
+### centos
+class apache::status::centos {
+ apache::config::file{ 'status.conf': }
+}