summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/init.pp4
-rw-r--r--manifests/selinux.pp16
2 files changed, 20 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 796a2d9..d21176a 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -8,6 +8,10 @@ class mysql::server {
gentoo: { include mysql::server::gentoo }
default: { include mysql::server::base }
}
+
+ if $selinux {
+ include mysql::selinux
+ }
}
class mysql::server::base {
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": }
+}