lib/puppet/agent/locker.rb in puppet-2.7.11 vs lib/puppet/agent/locker.rb in puppet-2.7.12
- old
+ new
@@ -1,10 +1,20 @@
require 'puppet/util/pidlock'
# Break out the code related to locking the agent. This module is just
# included into the agent, but having it here makes it easier to test.
module Puppet::Agent::Locker
+ # Let the daemon run again, freely in the filesystem.
+ def enable
+ lockfile.unlock(:anonymous => true)
+ end
+
+ # Stop the daemon from making any catalog runs.
+ def disable
+ lockfile.lock(:anonymous => true)
+ end
+
# Yield if we get a lock, else do nothing. Return
# true/false depending on whether we get the lock.
def lock
if lockfile.lock
begin
@@ -23,8 +33,12 @@
@lockfile
end
def running?
- lockfile.locked?
+ lockfile.locked? and !lockfile.anonymous?
+ end
+
+ def disabled?
+ lockfile.locked? and lockfile.anonymous?
end
end