summaryrefslogtreecommitdiffstats
path: root/lib/puppet/type/selboolean.rb
blob: b1f12cae4dd99e07b1d78bd5cafc1158be176251 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#
# Simple module for manageing SELinux booleans
#

module Puppet
    newtype(:selboolean) do
        @doc = "Manages SELinux booleans on systems with SELinux support.  The supported booleans
            are any of the ones found in /selinux/booleans/."

        newparam(:name) do
            desc "The name of the SELinux boolean to be managed."
            isnamevar
        end

        newproperty(:value) do
            desc "Whether the the SELinux boolean should be enabled or disabled."
            newvalue(:on)
            newvalue(:off)
        end

        newparam(:persistent) do
            desc "If set true, SELinux booleans will be written to disk and persist accross reboots.
                The default is ``false``."

            defaultto :false
            newvalues(:true, :false)
        end

    end
end