Sha256: 512f3ad9e24c42a248804023b228bfd1e5c04e5cc1244f848356ad0a491bf6dd
Contents?: true
Size: 925 Bytes
Versions: 6
Compression:
Stored size: 925 Bytes
Contents
# # predefined methods: update_state, apply, reset, resolve # module Sfp::Resource @@resource = Object.new.extend(Sfp::Resource) def self.resolve(path) @@resource.resolve(path) end attr_accessor :parent, :synchronized attr_reader :state, :model def init(model={}) @model = {} @state = {} @synchronized = [] update_model(model) end def update_state @state = {} end def update_model(model) model.each { |k,v| @model[k] = v } end def to_model @state = {} @model.each { |k,v| @state[k] = v } end alias_method :reset, :to_model def resolve(path) Sfp::Agent.resolve(path) end alias_method :resolve_state, :resolve def resolve_model(path) Sfp::Agent.resolve_model(path) end protected def exec_seq(*commands) commands = [commands.to_s] if not commands.is_a?(Array) commands.each { |c| raise Exception, "Cannot execute: #{c}" if !system(c) } end end module Sfp::Module end
Version data entries
6 entries across 6 versions & 1 rubygems