Current File : //opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet/util/at_fork/noop.rb
# A noop implementation of the Puppet::Util::AtFork handler
class Puppet::Util::AtFork::Noop
class << self
def new
# no need to instantiate every time, return the class object itself
self
end
def prepare
end
def parent
end
def child
end
end
end