summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'manifests')
-rw-r--r--manifests/status.pp1
-rw-r--r--manifests/status/debian.pp3
2 files changed, 4 insertions, 0 deletions
diff --git a/manifests/status.pp b/manifests/status.pp
index 1f7ca89..c507013 100644
--- a/manifests/status.pp
+++ b/manifests/status.pp
@@ -3,6 +3,7 @@
class apache::status {
case $::operatingsystem {
centos: { include apache::status::centos }
+ debian: { include apache::status::debian }
defaults: { include apache::status::base }
}
if $apache::manage_munin {
diff --git a/manifests/status/debian.pp b/manifests/status/debian.pp
new file mode 100644
index 0000000..678bc44
--- /dev/null
+++ b/manifests/status/debian.pp
@@ -0,0 +1,3 @@
+class apache::status::debian {
+ ::apache::debian::module { 'status': }
+}