Sha256: e96009ebb63ac74658acd199625b5ef89be786e666228b9dd7601e2fa63a8f7d

Contents?: true

Size: 1.78 KB

Versions: 14

Compression:

Stored size: 1.78 KB

Contents

#
# Simple module for managing SELinux policy modules
#

Puppet::Type.newtype(:selmodule) do
  @doc = "Manages loading and unloading of SELinux policy modules
    on the system.  Requires SELinux support.  See man semodule(8)
    for more information on SELinux policy modules.

    **Autorequires:** If Puppet is managing the file containing this SELinux
    policy module (which is either explicitly specified in the `selmodulepath`
    attribute or will be found at {`selmoduledir`}/{`name`}.pp), the selmodule
    resource will autorequire that file."

  ensurable

  newparam(:name) do
    desc "The name of the SELinux policy to be managed.  You should not
      include the customary trailing .pp extension."
    isnamevar
  end

  newparam(:selmoduledir) do

    desc "The directory to look for the compiled pp module file in.
      Currently defaults to `/usr/share/selinux/targeted`.  If the
      `selmodulepath` attribute is not specified, Puppet will expect to find
      the module in `<selmoduledir>/<name>.pp`, where `name` is the value of the
      `name` parameter."

    defaultto "/usr/share/selinux/targeted"
  end

  newparam(:selmodulepath) do

    desc "The full path to the compiled .pp policy module.  You only need to use
      this if the module file is not in the `selmoduledir` directory."

  end

  newproperty(:syncversion) do

    desc "If set to `true`, the policy will be reloaded if the
    version found in the on-disk file differs from the loaded
    version.  If set to `false` (the default) the the only check
    that will be made is if the policy is loaded at all or not."

    newvalue(:true)
    newvalue(:false)
  end

  autorequire(:file) do
    if self[:selmodulepath]
      [self[:selmodulepath]]
    else
      ["#{self[:selmoduledir]}/#{self[:name]}.pp"]
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
puppet-3.4.3 lib/puppet/type/selmodule.rb
puppet-3.4.2 lib/puppet/type/selmodule.rb
puppet-3.4.1 lib/puppet/type/selmodule.rb
puppet-3.4.0 lib/puppet/type/selmodule.rb
puppet-3.4.0.rc2 lib/puppet/type/selmodule.rb
puppet-3.4.0.rc1 lib/puppet/type/selmodule.rb
puppet-3.3.2 lib/puppet/type/selmodule.rb
puppet-3.3.1 lib/puppet/type/selmodule.rb
puppet-3.3.1.rc3 lib/puppet/type/selmodule.rb
puppet-3.3.1.rc2 lib/puppet/type/selmodule.rb
puppet-3.3.1.rc1 lib/puppet/type/selmodule.rb
puppet-3.3.0 lib/puppet/type/selmodule.rb
puppet-3.3.0.rc3 lib/puppet/type/selmodule.rb
puppet-3.3.0.rc2 lib/puppet/type/selmodule.rb