class Puppet::Util::AtFork::Noop

A noop implementation of the Puppet::Util::AtFork handler

Public Class Methods

child() click to toggle source
   # File lib/puppet/util/at_fork/noop.rb
15 def child
16 end
new() click to toggle source
  # File lib/puppet/util/at_fork/noop.rb
4 def new
5   # no need to instantiate every time, return the class object itself
6   self
7 end
parent() click to toggle source
   # File lib/puppet/util/at_fork/noop.rb
12 def parent
13 end
prepare() click to toggle source
   # File lib/puppet/util/at_fork/noop.rb
 9 def prepare
10 end