Sha256: 1d730f07100ddedcd906ea73ee30fd212227492b12079ddb051104980c75d444
Contents?: true
Size: 1.11 KB
Versions: 1
Compression:
Stored size: 1.11 KB
Contents
require 'chef/knife' require 'knife-solo/ssh_command' require 'knife-solo/kitchen_command' require 'knife-solo/bootstraps' class Chef class Knife # Approach ported from littlechef (https://github.com/tobami/littlechef) # Copyright 2010, 2011, Miquel Torres <tobami@googlemail.com> class Prepare < Knife include KnifeSolo::SshCommand include KnifeSolo::KitchenCommand banner "knife prepare [user@]hostname (options)" option :omnibus_version, :long => "--omnibus-version VERSION", :description => "The version of Omnibus to install" def run super bootstrap.bootstrap! generate_node_config end def bootstrap KnifeSolo::Bootstraps.class_for_operating_system(operating_system()).new(self) end def generate_node_config File.open(node_config, 'w') do |f| f.print <<-JSON.gsub(/^\s+/, '') { "run_list": [] } JSON end unless node_config.exist? end def operating_system @operating_system ||= run_command('uname -s').stdout.strip end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
knife-solo-0.0.11 | lib/chef/knife/prepare.rb |