Sha256: 2b0793804226ff10a62ba144c3380ebf24df2a002a70dfc38e48277663b6ce09
Contents?: true
Size: 1.65 KB
Versions: 1
Compression:
Stored size: 1.65 KB
Contents
class Puppet::Client::PElement < Puppet::Client @drivername = :PElementServer @handler = Puppet::Server::PElement def apply(bucket) case bucket when Puppet::TransObject tmp = Puppet::TransBucket.new tmp.push bucket bucket = tmp bucket.name = Facter["hostname"].value bucket.type = "pelement" when Puppet::TransBucket # nothing else raise Puppet::DevError, "You must pass a transportable object, not a %s" % bucket.class end unless @local bucket = Base64.encode64(YAML::dump(bucket)) end report = @driver.apply(bucket, "yaml") return report end def describe(type, name, retrieve = false, ignore = false) Puppet.info "Describing %s[%s]" % [type, name] text = @driver.describe(type, name, retrieve, ignore, "yaml") object = nil if @local object = text else object = YAML::load(Base64.decode64(text)) end return object end def initialize(hash = {}) if hash.include?(:PElementServer) unless hash[:PElementServer].is_a?(Puppet::Server::PElement) raise Puppet::DevError, "Must pass an actual PElement server object" end end super(hash) end def list(type, ignore = false, base = false) bucket = @driver.list(type, ignore, base, "yaml") unless @local bucket = YAML::load(Base64.decode64(bucket)) end return bucket end end # $Id: pelement.rb 1145 2006-04-28 04:08:38Z luke $
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
puppet-0.18.4 | lib/puppet/client/pelement.rb |