Sha256: eb5b1d1ddcc953685060b4bf348abdf8828d4452affeed0b02361771e8d79829
Contents?: true
Size: 1023 Bytes
Versions: 4
Compression:
Stored size: 1023 Bytes
Contents
require 'rundock' module Rundock class Node attr_reader :name attr_reader :operations attr_reader :backend attr_accessor :hooks def initialize(name, backend) @name = name @backend = backend @operations = [] @hooks = [] end def add_operation(ope) @operations ||= [] @operations << ope end def run Logger.formatter.on_rec Logger.debug("run node: #{@name}") Logger.warn("no operation running: #{@name}") if @operations.blank? node_attributes = [] @operations.each do |ope| Logger.debug("run operation: #{ope.class}") node_attributes << ope.attributes ope.attributes[:nodename] = @name ope.run(@backend, ope.attributes) end log_buffer = Logger.formatter.flush unless Logger.formatter.buffer.empty? @hooks.each do |h| Logger.debug("run hook: #{h.name}") h.hook(node_attributes, log_buffer) end Logger.formatter.off_rec end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
rundock-1.2.1 | lib/rundock/node.rb |
rundock-1.2.0 | lib/rundock/node.rb |
rundock-1.1.7 | lib/rundock/node.rb |
rundock-1.1.6 | lib/rundock/node.rb |