Sha256: ccc866859864e97cb31d6ff300942f6b698786d580d2cd73ad1773651d8fc575
Contents?: true
Size: 1.88 KB
Versions: 4
Compression:
Stored size: 1.88 KB
Contents
require 'puppet/agent' require 'puppet/configurer' require 'puppet/indirector' # A basic class for running the agent. Used by # `puppet kick` to kick off agents remotely. class Puppet::Run extend Puppet::Indirector indirects :run, :terminus_class => :local attr_reader :status, :background, :options def agent # Forking disabled for "puppet kick" runs Puppet::Agent.new(Puppet::Configurer, false) end def background? background end def initialize(options = {}) if options.include?(:background) @background = options[:background] options.delete(:background) end valid_options = [:tags, :ignoreschedules, :pluginsync] options.each do |key, value| raise ArgumentError, "Run does not accept #{key}" unless valid_options.include?(key) end @options = options end def initialize_from_hash(hash) @options = {} hash['options'].each do |key, value| @options[key.to_sym] = value end @background = hash['background'] @status = hash['status'] end def log_run msg = "" msg += "triggered run" % if options[:tags] msg += " with tags #{options[:tags].inspect}" end msg += " ignoring schedules" if options[:ignoreschedules] Puppet.notice msg end def run if agent.running? @status = "running" return self end log_run if background? Thread.new { agent.run(options) } else agent.run(options) end @status = "success" self end def self.from_hash(hash) obj = allocate obj.initialize_from_hash(hash) obj end def self.from_pson(hash) if hash['options'] return from_hash(hash) end options = { :pluginsync => Puppet[:pluginsync] } hash.each do |key, value| options[key.to_sym] = value end new(options) end def to_pson @options.merge(:background => @background).to_pson end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
puppet-3.2.4 | lib/puppet/run.rb |
puppet-3.2.3 | lib/puppet/run.rb |
puppet-3.2.3.rc1 | lib/puppet/run.rb |
puppet-3.2.2 | lib/puppet/run.rb |