Sha256: 8b6c363ffea675e2691760a69b7651bb42bb40eedec03205f08f9d5f61c39931
Contents?: true
Size: 1.94 KB
Versions: 8
Compression:
Stored size: 1.94 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 => @options, :background => @background, :status => @status }.to_pson end end
Version data entries
8 entries across 8 versions & 1 rubygems