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
16 def child
17 end
new() click to toggle source
  # File lib/puppet/util/at_fork/noop.rb
5 def new
6   # no need to instantiate every time, return the class object itself
7   self
8 end
parent() click to toggle source
   # File lib/puppet/util/at_fork/noop.rb
13 def parent
14 end
prepare() click to toggle source
   # File lib/puppet/util/at_fork/noop.rb
10 def prepare
11 end