class Chake::ConfigManager::Itamae
Public Class Methods
Source
# File lib/chake/config_manager/itamae.rb, line 23 def self.accept?(node) node.data.key?('itamae') end
Public Instance Methods
Source
# File lib/chake/config_manager/itamae.rb, line 15 def apply(config) run_itamae(config) end
Source
# File lib/chake/config_manager/itamae.rb, line 8 def converge recipes = node.data['itamae'] return if recipes.empty? run_itamae(*recipes) end
Source
# File lib/chake/config_manager/itamae.rb, line 19 def needs_upload? false end
Private Instance Methods
Source
# File lib/chake/config_manager/itamae.rb, line 53 def json_config File.join(Chake.tmpdir, "#{node.hostname}.json") end
Source
# File lib/chake/config_manager/itamae.rb, line 29 def run_itamae(*recipes) cmd = ['itamae'] case node.connection when Chake::Connection::Ssh cmd << 'ssh' << "--user=#{node.username}" << "--host=#{node.hostname}" cmd += ssh_config when Chake::Connection::Local if node.username == 'root' cmd.prepend 'sudo' end cmd << 'local' else raise NotImplementedError, "Connection type #{node.connection.class} not supported for itamee" end cmd << "--node-json=#{json_config}" if node.silent cmd << '--log-level=warn' end cmd += recipes node.log("$ #{cmd.join(' ')}") io = IO.popen(cmd, 'r', err: %i[child out]) node.connection.read_output(io) end
Source
# File lib/chake/config_manager/itamae.rb, line 57 def ssh_config ssh_config = node.connection.send(:ssh_config_file) # FIXME File.exist?(ssh_config) ? ["--ssh-config=#{ssh_config}"] : [] end