Resource Type: selboolean

NOTE: This page was generated from the Puppet source code on 2018-08-28 06:48:02 -0700 selboolean —–

Description

Manages SELinux booleans on systems with SELinux support. The supported booleans are any of the ones found in /selinux/booleans/.

Attributes

selboolean { 'resource title':
  name       => # (namevar) The name of the SELinux boolean to be...
  persistent => # If set true, SELinux booleans will be written to 
  provider   => # The specific backend to use for this...
  value      => # Whether the SELinux boolean should be enabled or 
  # ...plus any applicable metaparameters.
}

name

(Namevar: If omitted, this attribute’s value defaults to the resource’s title.)

The name of the SELinux boolean to be managed.

(↑ Back to selboolean attributes)

persistent

If set to true, SELinux booleans will be written to disk and persist across reboots.

Default: false

Allowed values:

  • true
  • false

(↑ Back to selboolean attributes)

provider

The specific backend to use for this selboolean resource. You will seldom need to specify this — Puppet will usually discover the appropriate provider for your platform.

Available providers are:

(↑ Back to selboolean attributes)

value

(Property: This attribute represents concrete state on the target system.)

Whether the SELinux boolean should be enabled or disabled.

Allowed values:

  • on
  • off

(↑ Back to selboolean attributes)

Providers

getsetsebool

Manage SELinux booleans using the getsebool and setsebool binaries.

  • Required binaries: /usr/sbin/getsebool, /usr/sbin/setsebool

NOTE: This page was generated from the Puppet source code on 2018-08-28 06:48:02 -0700