class Puppet::Settings::AutosignSetting

A specialization of the file setting to allow boolean values.

The autosign value can be either a boolean or a file path, and if the setting is a file path then it may have a owner/group/mode specified.

@api private

Public Instance Methods

munge(value) click to toggle source
# File lib/puppet/settings/autosign_setting.rb, line 11
def munge(value)
  if ['true', true].include? value
    true
  elsif ['false', false, nil].include? value
    false
  elsif Puppet::Util.absolute_path?(value)
    value
  else
    raise Puppet::Settings::ValidationError, "Invalid autosign value #{value}: must be 'true'/'false' or an absolute path"
  end
end