summaryrefslogtreecommitdiff
path: root/manifests/status.pp
diff options
context:
space:
mode:
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': }
+}