# File lib/puppet/network/client.rb, line 143
143:   def shutdown
144:     if self.stopping
145:       Puppet.notice "Already in shutdown"
146:     else
147:       self.stopping = true
148:       Puppet::Util::Storage.store if self.respond_to? :running? and self.running?
149:       rmpidfile
150:     end
151:   end