# File lib/puppet/network/client.rb, line 128
128:     def runnow
129:         if self.stopping
130:             Puppet.notice "In shutdown progress; skipping run"
131:             return
132:         end
133:         begin
134:             self.run
135:             self.lastrun = Time.now.to_i
136:         rescue => detail
137:             puts detail.backtrace if Puppet[:trace]
138:             Puppet.err "Could not run %s: %s" % [self.class, detail]
139:         end
140:     end