Sha256: fb8d56d924f985ef4487a604530b17bd6fbd8cd28bc050469c672cac122b7e15

Contents?: true

Size: 1.63 KB

Versions: 270

Compression:

Stored size: 1.63 KB

Contents

require 'puppet/util/pidlock'
require 'puppet/error'

# This module is responsible for encapsulating the logic for "locking" the
# puppet agent during a catalog run; in other words, keeping track of enough
# state to answer the question "is there a puppet agent currently applying a
# catalog?"
#
# The implementation involves writing a lockfile whose contents are simply the
# PID of the running agent process.  This is considered part of the public
# Puppet API because it used by external tools such as mcollective.
#
# For more information, please see docs on the website.
#  http://links.puppet.com/agent_lockfiles
module Puppet::Agent::Locker
  # Yield if we get a lock, else raise Puppet::LockError. Return
  # value of block yielded.
  def lock
    if lockfile.lock
      begin
        yield
      ensure
        lockfile.unlock
      end
    else
      fail Puppet::LockError, _('Failed to acquire lock')
    end
  end

  # @deprecated
  def running?
    #TRANSLATORS 'Puppet::Agent::Locker.running?' is a method name and should not be translated
    message = _('Puppet::Agent::Locker.running? is deprecated as it is inherently unsafe.')
    #TRANSLATORS 'LockError' should not be translated
    message += ' ' + _('The only safe way to know if the lock is locked is to try lock and perform some '\
                       'action and then handle the LockError that may result.')
    Puppet.deprecation_warning(message)
    lockfile.locked?
  end

  def lockfile_path
    @lockfile_path ||= Puppet[:agent_catalog_run_lockfile]
  end

  def lockfile
    @lockfile ||= Puppet::Util::Pidlock.new(lockfile_path)

    @lockfile
  end
  private :lockfile


end

Version data entries

270 entries across 270 versions & 2 rubygems

Version Path
puppet-5.5.22 lib/puppet/agent/locker.rb
puppet-5.5.22-x86-mingw32 lib/puppet/agent/locker.rb
puppet-5.5.22-x64-mingw32 lib/puppet/agent/locker.rb
puppet-5.5.22-universal-darwin lib/puppet/agent/locker.rb
puppet-6.18.0 lib/puppet/agent/locker.rb
puppet-6.18.0-x86-mingw32 lib/puppet/agent/locker.rb
puppet-6.18.0-x64-mingw32 lib/puppet/agent/locker.rb
puppet-6.18.0-universal-darwin lib/puppet/agent/locker.rb
puppet-6.17.0 lib/puppet/agent/locker.rb
puppet-6.17.0-x86-mingw32 lib/puppet/agent/locker.rb
puppet-6.17.0-x64-mingw32 lib/puppet/agent/locker.rb
puppet-6.17.0-universal-darwin lib/puppet/agent/locker.rb
puppet-5.5.21 lib/puppet/agent/locker.rb
puppet-5.5.21-x86-mingw32 lib/puppet/agent/locker.rb
puppet-5.5.21-x64-mingw32 lib/puppet/agent/locker.rb
puppet-5.5.21-universal-darwin lib/puppet/agent/locker.rb
puppet-6.16.0 lib/puppet/agent/locker.rb
puppet-6.16.0-x86-mingw32 lib/puppet/agent/locker.rb
puppet-6.16.0-x64-mingw32 lib/puppet/agent/locker.rb
puppet-6.16.0-universal-darwin lib/puppet/agent/locker.rb