summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2009-09-28 22:21:05 +0200
committermh <mh@immerda.ch>2009-09-28 22:21:05 +0200
commitbd6584180dc9f3cbc03da5f36076a05bdafed6cf (patch)
treeb65fcd96f80111b1f6065e0f07950048979f00fb /manifests
parentec020a14e581dc7514d95963e13033c9dbb60b41 (diff)
remove selinux stuff as we'll do it different
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp3
-rw-r--r--manifests/selinux.pp9
-rw-r--r--manifests/selinux/base.pp1
-rw-r--r--manifests/selinux/gentoo.pp7
4 files changed, 0 insertions, 20 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index ef7867f..992469f 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -27,9 +27,6 @@ class apache {
openbsd: { include apache::openbsd }
default: { include apache::base }
}
- if $selinux {
-# include apache::selinux
- }
if $use_munin {
include apache::status
}
diff --git a/manifests/selinux.pp b/manifests/selinux.pp
deleted file mode 100644
index de76ddd..0000000
--- a/manifests/selinux.pp
+++ /dev/null
@@ -1,9 +0,0 @@
-# manifests/selinux.pp
-# manage selinux specific stuff
-
-class apache::selinux {
- case $operatingsystem {
- gentoo: { include apache::selinux::gentoo }
- default: { include apache::selinux::base }
- }
-}
diff --git a/manifests/selinux/base.pp b/manifests/selinux/base.pp
deleted file mode 100644
index bcf3b9b..0000000
--- a/manifests/selinux/base.pp
+++ /dev/null
@@ -1 +0,0 @@
-class apache::selinux::base {}
diff --git a/manifests/selinux/gentoo.pp b/manifests/selinux/gentoo.pp
deleted file mode 100644
index 3dcb1dd..0000000
--- a/manifests/selinux/gentoo.pp
+++ /dev/null
@@ -1,7 +0,0 @@
-class apache::selinux::gentoo inherits apache::selinux::base {
- package{'selinux-apache':
- ensure => present,
- category => 'sec-policy',
- }
- selinux::loadmodule {"apache": }
-}