Sha256: bdefca392589d0881d1ea28ba3e347d8d3bcadc0cba2fe4a0bd25312413aca91

Contents?: true

Size: 664 Bytes

Versions: 32

Compression:

Stored size: 664 Bytes

Contents

module Puppet
  Type.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 to true, SELinux booleans will be written to disk and persist across
        reboots."

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

  end
end

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
puppet-5.5.10 lib/puppet/type/selboolean.rb
puppet-5.5.10-x86-mingw32 lib/puppet/type/selboolean.rb
puppet-5.5.10-x64-mingw32 lib/puppet/type/selboolean.rb
puppet-5.5.10-universal-darwin lib/puppet/type/selboolean.rb
puppet-5.5.8 lib/puppet/type/selboolean.rb
puppet-5.5.8-x86-mingw32 lib/puppet/type/selboolean.rb
puppet-5.5.8-x64-mingw32 lib/puppet/type/selboolean.rb
puppet-5.5.8-universal-darwin lib/puppet/type/selboolean.rb
puppet-5.5.7 lib/puppet/type/selboolean.rb
puppet-5.5.7-x86-mingw32 lib/puppet/type/selboolean.rb
puppet-5.5.7-x64-mingw32 lib/puppet/type/selboolean.rb
puppet-5.5.7-universal-darwin lib/puppet/type/selboolean.rb