Class: Puppet::Util::Settings

Inherits:
Object
  • Object
show all
Includes:
Enumerable
Defined in:
lib/vendor/puppet/util/settings.rb

Overview

The class for handling configuration files.

Defined Under Namespace

Classes: BooleanSetting, FileSetting, Setting

Constant Summary collapse

ReadOnly =
[:run_mode, :name]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeSettings

Create a new collection of config settings.



169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
# File 'lib/vendor/puppet/util/settings.rb', line 169

def initialize
  @config = {}
  @shortnames = {}

  @created = []
  @searchpath = nil

  # Mutex-like thing to protect @values
  @sync = Sync.new

  # Keep track of set values.
  @values = Hash.new { |hash, key| hash[key] = {} }

  # And keep a per-environment cache
  @cache = Hash.new { |hash, key| hash[key] = {} }

  # The list of sections we've used.
  @used = []
end

Instance Attribute Details

#fileObject

Returns the value of attribute file.



14
15
16
# File 'lib/vendor/puppet/util/settings.rb', line 14

def file
  @file
end

#timerObject (readonly)

Returns the value of attribute timer.



15
16
17
# File 'lib/vendor/puppet/util/settings.rb', line 15

def timer
  @timer
end

Instance Method Details

#[](param) ⇒ Object

Retrieve a config value



20
21
22
# File 'lib/vendor/puppet/util/settings.rb', line 20

def [](param)
  value(param)
end

#[]=(param, value) ⇒ Object

Set a config value. This doesn’t set the defaults, it sets the value itself.



25
26
27
# File 'lib/vendor/puppet/util/settings.rb', line 25

def []=(param, value)
  set_value(param, value, :memory)
end

#addargs(options) ⇒ Object

Generate the list of valid arguments, in a format that GetoptLong can understand, and add them to the passed option list.



31
32
33
34
35
36
37
38
# File 'lib/vendor/puppet/util/settings.rb', line 31

def addargs(options)
  # Add all of the config parameters as valid options.
  self.each { |name, setting|
    setting.getopt_args.each { |args| options << args }
  }

  options
end

#boolean?(param) ⇒ Boolean

Is our parameter a boolean parameter?

Returns:

  • (Boolean)


52
53
54
55
# File 'lib/vendor/puppet/util/settings.rb', line 52

def boolean?(param)
  param = param.to_sym
  !!(@config.include?(param) and @config[param].kind_of? BooleanSetting)
end

#clear(exceptcli = false) ⇒ Object

Remove all set values, potentially skipping cli values.



58
59
60
61
62
# File 'lib/vendor/puppet/util/settings.rb', line 58

def clear(exceptcli = false)
  @sync.synchronize do
    unsafe_clear(exceptcli)
  end
end

#clearusedObject

This is mostly just used for testing.



78
79
80
81
# File 'lib/vendor/puppet/util/settings.rb', line 78

def clearused
  @cache.clear
  @used = []
end

#convert(value, environment = nil) ⇒ Object

Do variable interpolation on the value.



84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# File 'lib/vendor/puppet/util/settings.rb', line 84

def convert(value, environment = nil)
  return value unless value
  return value unless value.is_a? String
  newval = value.gsub(/\$(\w+)|\$\{(\w+)\}/) do |value|
    varname = $2 || $1
    if varname == "environment" and environment
      environment
    elsif pval = self.value(varname, environment)
      pval
    else
      raise Puppet::DevError, "Could not find value for #{value}"
    end
  end

  newval
end

#description(name) ⇒ Object

Return a value’s description.



102
103
104
105
106
107
108
# File 'lib/vendor/puppet/util/settings.rb', line 102

def description(name)
  if obj = @config[name.to_sym]
    obj.desc
  else
    nil
  end
end

#eachObject



110
111
112
113
114
# File 'lib/vendor/puppet/util/settings.rb', line 110

def each
  @config.each { |name, object|
    yield name, object
  }
end

#eachsectionObject

Iterate over each section name.



117
118
119
120
121
122
123
124
125
126
# File 'lib/vendor/puppet/util/settings.rb', line 117

def eachsection
  yielded = []
  @config.each do |name, object|
    section = object.section
    unless yielded.include? section
      yield section
      yielded << section
    end
  end
end

#generate_configObject



227
228
229
230
# File 'lib/vendor/puppet/util/settings.rb', line 227

def generate_config
  puts to_config
  true
end

#generate_manifestObject



232
233
234
235
# File 'lib/vendor/puppet/util/settings.rb', line 232

def generate_manifest
  puts to_manifest
  true
end

#handlearg(opt, value = nil) ⇒ Object

Handle a command-line argument.



135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
# File 'lib/vendor/puppet/util/settings.rb', line 135

def handlearg(opt, value = nil)
  @cache.clear
  value &&= munge_value(value)
  str = opt.sub(/^--/,'')

  bool = true
  newstr = str.sub(/^no-/, '')
  if newstr != str
    str = newstr
    bool = false
  end
  str = str.intern

  if @config[str].is_a?(Puppet::Util::Settings::BooleanSetting)
    if value == "" or value.nil?
      value = bool
    end
  end

  set_value(str, value, :cli)
end

#include?(name) ⇒ Boolean

Returns:

  • (Boolean)


157
158
159
160
# File 'lib/vendor/puppet/util/settings.rb', line 157

def include?(name)
  name = name.intern if name.is_a? String
  @config.include?(name)
end

#legacy_to_mode(type, param) ⇒ Object



454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
# File 'lib/vendor/puppet/util/settings.rb', line 454

def legacy_to_mode(type, param)
  if not defined?(@app_names)
    require 'puppet/util/command_line'
    command_line = Puppet::Util::CommandLine.new
    @app_names = Puppet::Util::CommandLine::LegacyName.inject({}) do |hash, pair|
      app, legacy = pair
      command_line.require_application app
      hash[legacy.to_sym] = Puppet::Application.find(app).run_mode.name
      hash
    end
  end
  if new_type = @app_names[type]
    Puppet.warning "You have configuration parameter $#{param} specified in [#{type}], which is a deprecated section. I'm assuming you meant [#{new_type}]"
    return new_type
  end
  type
end

#metadata(param) ⇒ Object

Return a given object’s file metadata.



248
249
250
251
252
253
254
255
256
257
258
259
# File 'lib/vendor/puppet/util/settings.rb', line 248

def (param)
  if obj = @config[param.to_sym] and obj.is_a?(FileSetting)
    return [:owner, :group, :mode].inject({}) do |meta, p|
      if v = obj.send(p)
        meta[p] = v
      end
      meta
    end
  else
    nil
  end
end

#mkdir(default) ⇒ Object

Make a directory with the appropriate user, group, and mode



262
263
264
265
266
267
268
269
# File 'lib/vendor/puppet/util/settings.rb', line 262

def mkdir(default)
  obj = get_config_file_default(default)

  Puppet::Util::SUIDManager.asuser(obj.owner, obj.group) do
    mode = obj.mode || 0750
    Dir.mkdir(obj.value, mode)
  end
end

#optparse_addargs(options) ⇒ Object

Generate the list of valid arguments, in a format that OptionParser can understand, and add them to the passed option list.



42
43
44
45
46
47
48
49
# File 'lib/vendor/puppet/util/settings.rb', line 42

def optparse_addargs(options)
  # Add all of the config parameters as valid options.
  self.each { |name, setting|
    options << setting.optparse_args
  }

  options
end

#params(section = nil) ⇒ Object

Return all of the parameters associated with a given section.



277
278
279
280
281
282
283
284
285
286
287
288
# File 'lib/vendor/puppet/util/settings.rb', line 277

def params(section = nil)
  if section
    section = section.intern if section.is_a? String
    @config.find_all { |name, obj|
      obj.section == section
    }.collect { |name, obj|
      name
    }
  else
    @config.keys
  end
end

#parseObject

Parse the configuration file. Just provides thread safety.



292
293
294
295
296
297
298
# File 'lib/vendor/puppet/util/settings.rb', line 292

def parse
  raise "No :config setting defined; cannot parse unknown config file" unless self[:config]

  @sync.synchronize do
    unsafe_parse(self[:config])
  end
end

#persection(section) ⇒ Object

Iterate across all of the objects in a given section.



388
389
390
391
392
393
394
395
# File 'lib/vendor/puppet/util/settings.rb', line 388

def persection(section)
  section = section.to_sym
  self.each { |name, obj|
    if obj.section == section
      yield obj
    end
  }
end

Prints the contents of a config file with the available config settings, or it prints a single value of a config setting.



196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
# File 'lib/vendor/puppet/util/settings.rb', line 196

def print_config_options
  env = value(:environment)
  val = value(:configprint)
  if val == "all"
    hash = {}
    each do |name, obj|
      val = value(name,env)
      val = val.inspect if val == ""
      hash[name] = val
    end
    hash.sort { |a,b| a[0].to_s <=> b[0].to_s }.each do |name, val|
      puts "#{name} = #{val}"
    end
  else
    val.split(/\s*,\s*/).sort.each do |v|
      if include?(v)
        #if there is only one value, just print it for back compatibility
        if v == val
          puts value(val,env)
          break
        end
        puts "#{v} = #{value(v,env)}"
      else
        puts "invalid parameter: #{v}"
        return false
      end
    end
  end
  true
end


237
238
239
240
241
# File 'lib/vendor/puppet/util/settings.rb', line 237

def print_configs
  return print_config_options if value(:configprint) != ""
  return generate_config if value(:genconfig)
  generate_manifest if value(:genmanifest)
end

Returns:

  • (Boolean)


243
244
245
# File 'lib/vendor/puppet/util/settings.rb', line 243

def print_configs?
  (value(:configprint) != "" || value(:genconfig) || value(:genmanifest)) && true
end

#readwritelock(default, *args, &bloc) ⇒ Object

Raises:



729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
# File 'lib/vendor/puppet/util/settings.rb', line 729

def readwritelock(default, *args, &bloc)
  file = value(get_config_file_default(default).name)
  tmpfile = file + ".tmp"
  sync = Sync.new
  raise Puppet::DevError, "Cannot create #{file}; directory #{File.dirname(file)} does not exist" unless FileTest.directory?(File.dirname(tmpfile))

  sync.synchronize(Sync::EX) do
    File.open(file, ::File::CREAT|::File::RDWR, 0600) do |rf|
      rf.lock_exclusive do
        if File.exist?(tmpfile)
          raise Puppet::Error, ".tmp file already exists for #{file}; Aborting locked write. Check the .tmp file and delete if appropriate"
        end

        # If there's a failure, remove our tmpfile
        begin
          writesub(default, tmpfile, *args, &bloc)
        rescue
          File.unlink(tmpfile) if FileTest.exist?(tmpfile)
          raise
        end

        begin
          File.rename(tmpfile, file)
        rescue => detail
          Puppet.err "Could not rename #{file} to #{tmpfile}: #{detail}"
          File.unlink(tmpfile) if FileTest.exist?(tmpfile)
        end
      end
    end
  end
end

#reparseObject

Reparse our config file, if necessary.



405
406
407
408
409
410
411
# File 'lib/vendor/puppet/util/settings.rb', line 405

def reparse
  if file and file.changed?
    Puppet.notice "Reparsing #{file.file}"
    parse
    reuse
  end
end

#reuseObject



413
414
415
416
417
418
419
420
# File 'lib/vendor/puppet/util/settings.rb', line 413

def reuse
  return unless defined?(@used)
  @sync.synchronize do # yay, thread-safe
    new = @used
    @used = []
    self.use(*new)
  end
end

#run_modeObject

Figure out the section name for the run_mode.



272
273
274
# File 'lib/vendor/puppet/util/settings.rb', line 272

def run_mode
  Puppet.run_mode.name
end

#searchpath(environment = nil) ⇒ Object

The order in which to search for values.



423
424
425
426
427
428
429
# File 'lib/vendor/puppet/util/settings.rb', line 423

def searchpath(environment = nil)
  if environment
    [:cli, :memory, environment, :run_mode, :main, :mutable_defaults]
  else
    [:cli, :memory, :run_mode, :main, :mutable_defaults]
  end
end

#sectionlistObject

Get a list of objects per section



432
433
434
435
436
437
438
439
440
441
442
# File 'lib/vendor/puppet/util/settings.rb', line 432

def sectionlist
  sectionlist = []
  self.each { |name, obj|
    section = obj.section || "puppet"
    sections[section] ||= []
    sectionlist << section unless sectionlist.include?(section)
    sections[section] << obj
  }

  return sectionlist, sections
end

#service_user_available?Boolean

Returns:

  • (Boolean)


444
445
446
447
448
449
450
451
452
# File 'lib/vendor/puppet/util/settings.rb', line 444

def service_user_available?
  return @service_user_available if defined?(@service_user_available)

  return @service_user_available = false unless user_name = self[:user]

  user = Puppet::Type.type(:user).new :name => self[:user], :audit => :ensure

  @service_user_available = user.exists?
end

#set_value(param, value, type, options = {}) ⇒ Object



472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
# File 'lib/vendor/puppet/util/settings.rb', line 472

def set_value(param, value, type, options = {})
  param = param.to_sym
  unless setting = @config[param]
    if options[:ignore_bad_settings]
      return
    else
      raise ArgumentError,
        "Attempt to assign a value to unknown configuration parameter #{param.inspect}"
    end
  end
  value = setting.munge(value) if setting.respond_to?(:munge)
  setting.handle(value) if setting.respond_to?(:handle) and not options[:dont_trigger_handles]
  if ReadOnly.include? param and type != :mutable_defaults
    raise ArgumentError,
      "You're attempting to set configuration parameter $#{param}, which is read-only."
  end
  type = legacy_to_mode(type, param)
  @sync.synchronize do # yay, thread-safe
    # Allow later inspection to determine if the setting was set on the
    # command line, or through some other code path.  Used for the
    # `dns_alt_names` option during cert generate. --daniel 2011-10-18
    setting.setbycli = true if type == :cli

    @values[type][param] = value
    @cache.clear

    clearused

    # Clear the list of environments, because they cache, at least, the module path.
    # We *could* preferentially just clear them if the modulepath is changed,
    # but we don't really know if, say, the vardir is changed and the modulepath
    # is defined relative to it. We need the defined?(stuff) because of loading
    # order issues.
    Puppet::Node::Environment.clear if defined?(Puppet::Node) and defined?(Puppet::Node::Environment)
  end

  value
end

#setdefaults(section, defs) ⇒ Object

Set a bunch of defaults in a given section. The sections are actually pretty pointless, but they help break things up a bit, anyway.



513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
# File 'lib/vendor/puppet/util/settings.rb', line 513

def setdefaults(section, defs)
  section = section.to_sym
  call = []
  defs.each { |name, hash|
    if hash.is_a? Array
      unless hash.length == 2
        raise ArgumentError, "Defaults specified as an array must contain only the default value and the decription"
      end
      tmp = hash
      hash = {}
      [:default, :desc].zip(tmp).each { |p,v| hash[p] = v }
    end
    name = name.to_sym
    hash[:name] = name
    hash[:section] = section
    raise ArgumentError, "Parameter #{name} is already defined" if @config.include?(name)
    tryconfig = newsetting(hash)
    if short = tryconfig.short
      if other = @shortnames[short]
        raise ArgumentError, "Parameter #{other.name} is already using short name '#{short}'"
      end
      @shortnames[short] = tryconfig
    end
    @config[name] = tryconfig

    # Collect the settings that need to have their hooks called immediately.
    # We have to collect them so that we can be sure we're fully initialized before
    # the hook is called.
    call << tryconfig if tryconfig.call_on_define
  }

  call.each { |setting| setting.handle(self.value(setting.name)) }
end

#setting(param) ⇒ Object

Return an object by name.



129
130
131
132
# File 'lib/vendor/puppet/util/settings.rb', line 129

def setting(param)
  param = param.to_sym
  @config[param]
end

#shortinclude?(short) ⇒ Boolean

check to see if a short name is already defined

Returns:

  • (Boolean)


163
164
165
166
# File 'lib/vendor/puppet/util/settings.rb', line 163

def shortinclude?(short)
  short = short.intern if name.is_a? String
  @shortnames.include?(short)
end

#to_catalog(*sections) ⇒ Object

Convert the settings we manage into a catalog full of resources that model those settings.



548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
# File 'lib/vendor/puppet/util/settings.rb', line 548

def to_catalog(*sections)
  sections = nil if sections.empty?

  catalog = Puppet::Resource::Catalog.new("Settings")

  @config.values.find_all { |value| value.is_a?(FileSetting) }.each do |file|
    next unless (sections.nil? or sections.include?(file.section))
    next unless resource = file.to_resource
    next if catalog.resource(resource.ref)

    catalog.add_resource(resource)
  end

  add_user_resources(catalog, sections)

  catalog
end

#to_configObject

Convert our list of config settings into a configuration file.



567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
# File 'lib/vendor/puppet/util/settings.rb', line 567

def to_config
  str = %{The configuration file for #{Puppet[:name]}.  Note that this file
is likely to have unused configuration parameters in it; any parameter that's
valid anywhere in Puppet can be in any config file, even if it's not used.

Every section can specify three special parameters: owner, group, and mode.
These parameters affect the required permissions of any files specified after
their specification.  Puppet will sometimes use these parameters to check its
own configured state, so they can be used to make Puppet a bit more self-managing.

Generated on #{Time.now}.

}.gsub(/^/, "# ")

#         Add a section heading that matches our name.
if @config.include?(:run_mode)
str += "[#{self[:run_mode]}]\n"
  end
  eachsection do |section|
    persection(section) do |obj|
      str += obj.to_config + "\n" unless ReadOnly.include? obj.name or obj.name == :genconfig
    end
  end

  return str
end

#to_manifestObject

Convert to a parseable manifest



595
596
597
598
599
600
# File 'lib/vendor/puppet/util/settings.rb', line 595

def to_manifest
  catalog = to_catalog
  catalog.resource_refs.collect do |ref|
    catalog.resource(ref).to_manifest
  end.join("\n\n")
end

#uninterpolated_value(param, environment = nil) ⇒ Object



641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
# File 'lib/vendor/puppet/util/settings.rb', line 641

def uninterpolated_value(param, environment = nil)
  param = param.to_sym
  environment &&= environment.to_sym

  # See if we can find it within our searchable list of values
  val = catch :foundval do
    each_source(environment) do |source|
      # Look for the value.  We have to test the hash for whether
      # it exists, because the value might be false.
      @sync.synchronize do
        throw :foundval, @values[source][param] if @values[source].include?(param)
      end
    end
    throw :foundval, nil
  end

  # If we didn't get a value, use the default
  val = @config[param].default if val.nil?

  val
end

#unsafe_clear(exceptcli = false) ⇒ Object

Remove all set values, potentially skipping cli values.



65
66
67
68
69
70
71
72
73
74
75
# File 'lib/vendor/puppet/util/settings.rb', line 65

def unsafe_clear(exceptcli = false)
  @values.each do |name, values|
    @values.delete(name) unless exceptcli and name == :cli
  end

  # Don't clear the 'used' in this case, since it's a config file reparse,
  # and we want to retain this info.
  @used = [] unless exceptcli

  @cache.clear
end

#unsafe_parse(file) ⇒ Object

Unsafely parse the file – this isn’t thread-safe and causes plenty of problems if used directly.



301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
# File 'lib/vendor/puppet/util/settings.rb', line 301

def unsafe_parse(file)
  return unless FileTest.exist?(file)
  begin
    data = parse_file(file)
  rescue => details
    puts details.backtrace if Puppet[:trace]
    Puppet.err "Could not parse #{file}: #{details}"
    return
  end

  unsafe_clear(true)

  metas = {}
  data.each do |area, values|
    metas[area] = values.delete(:_meta)
    values.each do |key,value|
      set_value(key, value, area, :dont_trigger_handles => true, :ignore_bad_settings => true )
    end
  end

  # Determine our environment, if we have one.
  if @config[:environment]
    env = self.value(:environment).to_sym
  else
    env = "none"
  end

  # Call any hooks we should be calling.
  settings_with_hooks.each do |setting|
    each_source(env) do |source|
      if value = @values[source][setting.name]
        # We still have to use value to retrieve the value, since
        # we want the fully interpolated value, not $vardir/lib or whatever.
        # This results in extra work, but so few of the settings
        # will have associated hooks that it ends up being less work this
        # way overall.
        setting.handle(self.value(setting.name, env))
        break
      end
    end
  end

  # We have to do it in the reverse of the search path,
  # because multiple sections could set the same value
  # and I'm too lazy to only set the metadata once.
  searchpath.reverse.each do |source|
    source = run_mode if source == :run_mode
    source = @name if (@name && source == :name)
    if meta = metas[source]
      (meta)
    end
  end
end

#use(*sections) ⇒ Object

Create the necessary objects to use a section. This is idempotent; you can ‘use’ a section as many times as you want.



604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
# File 'lib/vendor/puppet/util/settings.rb', line 604

def use(*sections)
  sections = sections.collect { |s| s.to_sym }
  @sync.synchronize do # yay, thread-safe
    sections = sections.reject { |s| @used.include?(s) }

    return if sections.empty?

    begin
      catalog = to_catalog(*sections).to_ral
    rescue => detail
      puts detail.backtrace if Puppet[:trace]
      Puppet.err "Could not create resources for managing Puppet's files and directories in sections #{sections.inspect}: #{detail}"

      # We need some way to get rid of any resources created during the catalog creation
      # but not cleaned up.
      return
    end

    catalog.host_config = false
    catalog.apply do |transaction|
      if transaction.any_failed?
        report = transaction.report
        failures = report.logs.find_all { |log| log.level == :err }
        raise "Got #{failures.length} failure(s) while initializing: #{failures.collect { |l| l.to_s }.join("; ")}"
      end
    end

    sections.each { |s| @used << s }
    @used.uniq!
  end
end

#valid?(param) ⇒ Boolean

Returns:

  • (Boolean)


636
637
638
639
# File 'lib/vendor/puppet/util/settings.rb', line 636

def valid?(param)
  param = param.to_sym
  @config.has_key?(param)
end

#value(param, environment = nil) ⇒ Object

Find the correct value using our search path. Optionally accept an environment in which to search before the other configuration sections.



665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
# File 'lib/vendor/puppet/util/settings.rb', line 665

def value(param, environment = nil)
  param = param.to_sym
  environment &&= environment.to_sym

  # Short circuit to nil for undefined parameters.
  return nil unless @config.include?(param)

  # Yay, recursion.
  #self.reparse unless [:config, :filetimeout].include?(param)

  # Check the cache first.  It needs to be a per-environment
  # cache so that we don't spread values from one env
  # to another.
  if cached = @cache[environment||"none"][param]
    return cached
  end

  val = uninterpolated_value(param, environment)

  if param == :code
    # if we interpolate code, all hell breaks loose.
    return val
  end

  # Convert it if necessary
  val = convert(val, environment)

  # And cache it
  @cache[environment||"none"][param] = val
  val
end

#write(default, *args, &bloc) ⇒ Object

Open a file with the appropriate user, group, and mode



698
699
700
701
# File 'lib/vendor/puppet/util/settings.rb', line 698

def write(default, *args, &bloc)
  obj = get_config_file_default(default)
  writesub(default, value(obj.name), *args, &bloc)
end

#writesub(default, file, *args, &bloc) ⇒ Object

Open a non-default file under a default dir with the appropriate user, group, and mode



705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
# File 'lib/vendor/puppet/util/settings.rb', line 705

def writesub(default, file, *args, &bloc)
  obj = get_config_file_default(default)
  chown = nil
  if Puppet.features.root?
    chown = [obj.owner, obj.group]
  else
    chown = [nil, nil]
  end

  Puppet::Util::SUIDManager.asuser(*chown) do
    mode = obj.mode ? obj.mode.to_i : 0640
    args << "w" if args.empty?

    args << mode

    # Update the umask to make non-executable files
    Puppet::Util.withumask(File.umask ^ 0111) do
      File.open(file, *args) do |file|
        yield file
      end
    end
  end
end