Sha256: 4b580f5bfb2fab8577760aa6f6ec216b951425b54d6a117c9c6562b78a00cea0
Contents?: true
Size: 681 Bytes
Versions: 68
Compression:
Stored size: 681 Bytes
Contents
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 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
Version data entries
68 entries across 68 versions & 2 rubygems