summaryrefslogtreecommitdiff
path: root/manifests/selinux.pp
blob: de76ddd8329599ef640b398c68ba113e2ccf73ef (plain)
1
2
3
4
5
6
7
8
9
# manifests/selinux.pp
# manage selinux specific stuff

class apache::selinux {
    case $operatingsystem {
        gentoo: { include apache::selinux::gentoo }
        default: { include apache::selinux::base }
    }
}