summaryrefslogtreecommitdiffstats
path: root/lib/puppet/client.rb
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-05-02 04:30:40 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-05-02 04:30:40 +0000
commitb67a19b6b0483d73178a928e9d1c2bb752b2f077 (patch)
treedfb6505ece37940f251676bfa95712aba9771ee0 /lib/puppet/client.rb
parenta435d076d4d61e35fe4433a5c3e76ffb2203ac5d (diff)
downloadpuppet-b67a19b6b0483d73178a928e9d1c2bb752b2f077.tar.gz
puppet-b67a19b6b0483d73178a928e9d1c2bb752b2f077.tar.xz
puppet-b67a19b6b0483d73178a928e9d1c2bb752b2f077.zip
Fixing #132, which involved creating a separate CA client and using it to retrieve the certificates. There was more work to do because of the weird client/daemon/server heirarchy.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1160 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/client.rb')
-rw-r--r--lib/puppet/client.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/client.rb b/lib/puppet/client.rb
index 0dd5221ed..7f6ed2592 100644
--- a/lib/puppet/client.rb
+++ b/lib/puppet/client.rb
@@ -136,6 +136,7 @@ module Puppet
Puppet.notice "Already in shutdown"
else
self.stopping = true
+ rmpidfile()
Puppet::Storage.store
exit
end
@@ -144,7 +145,6 @@ module Puppet
# Start listening for events. We're pretty much just listening for
# timer events here.
def start
- super
# Create our timer
timer = EventLoop::Timer.new(
:interval => Puppet[:runinterval],