Sha256: 235e4f0b1726ae1fc7cf6c170b0fddb503c29f896ee1af031542cc4e0ec75703
Contents?: true
Size: 992 Bytes
Versions: 1
Compression:
Stored size: 992 Bytes
Contents
require 'mattock/tasklib' module LogicalConstruct class ChefSolo < Mattock::TaskLib default_namespace :chef_solo settings( :chef_solo_bin => "chef-solo", :config_file => "/etc/chef/solo.rb", :daemonize => nil, :user => nil, :group => nil, :node_name => nil ) def default_configuration(chef_config) self.config_file = chef_config.solo_rb end def chef_command Mattock::CommandLine.new(chef_solo_bin) do |cmd| cmd.options << "--config #{config_file}" unless config_file.nil? cmd.options << "--daemonize" if daemonize cmd.options << "--user #{user}" if user cmd.options << "--group #{group}" if group cmd.options << "--node_name #{node_name}" if node_name end end def define in_namespace do file config_file task :run => [config_file] do chef_command.run end end task :provision => self[:run] end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
logical-construct-0.0.1.localtesting | lib/logical-construct/target/chef-solo.rb |