# File lib/puppet/network/client.rb, line 117
117:   def runnow
118:     if self.stopping
119:       Puppet.notice "In shutdown progress; skipping run"
120:       return
121:     end
122:     begin
123:       self.run
124:       self.lastrun = Time.now.to_i
125:     rescue => detail
126:       puts detail.backtrace if Puppet[:trace]
127:       Puppet.err "Could not run #{self.class}: #{detail}"
128:     end
129:   end