summaryrefslogtreecommitdiff
path: root/manifests/selinux.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2008-05-12 19:50:57 +0000
committermh <mh@immerda.ch>2008-05-12 19:50:57 +0000
commit7aeeced0339255f5cdc614dd631582d1064a4a8a (patch)
tree0d04612e8b271ed6cc9d4b3d79e044e46318f3af /manifests/selinux.pp
parent9ba9370bf81ab3bb3599e3ec5bc4b5f4388759d5 (diff)
added selinux stuff
Diffstat (limited to 'manifests/selinux.pp')
-rw-r--r--manifests/selinux.pp16
1 files changed, 16 insertions, 0 deletions
diff --git a/manifests/selinux.pp b/manifests/selinux.pp
new file mode 100644
index 0000000..14115c7
--- /dev/null
+++ b/manifests/selinux.pp
@@ -0,0 +1,16 @@
+# manifests/selinux.pp
+
+class mysql::selinux {
+ case $operatingsystem {
+ gentoo: { include mysql::selinux::gentoo }
+ }
+}
+
+class mysql::selinux::gentoo {
+ package{'selinux-mysql':
+ ensure => present,
+ category => 'sec-policy',
+ require => Package[mysql],
+ }
+ selinux::loadmodule {"mysql": }
+}