Class: Chef::Application::Solo Deprecated

Inherits:
Base show all
Defined in:
lib/chef/application/solo.rb

Overview

Deprecated.

use Chef::Application::Client instead, this will be removed in Chef-16

DO NOT MAKE EDITS, see Chef::Application::Base

Do not reference this class it will be removed in Chef-16

Constant Summary

Constants inherited from Base

Base::IMMEDIATE_RUN_SIGNAL, Base::RECONFIGURE_SIGNAL, Base::SELF_PIPE

Instance Attribute Summary

Attributes inherited from Base

#chef_client_json

Instance Method Summary collapse

Methods inherited from Base

#run_application, #setup_application, #setup_signal_handlers

Methods inherited from Chef::Application

#apply_extra_config_options, #check_license_acceptance, #chef_config, #chef_configfetcher, #configure_chef, #configure_encoding, #configure_log_location, #configure_logging, debug_stacktrace, #emit_warnings, exit!, fatal!, #force_force_logger, #initialize, #load_config_file, #logger, logger, normalize_exit_code, #resolve_log_level, #run_application, #run_chef_client, #set_specific_recipes, #setup_application, #setup_signal_handlers, use_separate_defaults?, #using_output_formatter?

Constructor Details

This class inherits a constructor from Chef::Application

Instance Method Details

#configure_legacy_mode!Object



96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# File 'lib/chef/application/solo.rb', line 96

def configure_legacy_mode!
  if Chef::Config[:daemonize]
    Chef::Config[:interval] ||= 1800
  end

  # supervisor processes are enabled by default for interval-running processes but not for one-shot runs
  if Chef::Config[:client_fork].nil?
    Chef::Config[:client_fork] = !!Chef::Config[:interval]
  end

  if Chef::Config[:interval]
    if Chef::Platform.windows?
      Chef::Application.fatal!(windows_interval_error_message)
    elsif !Chef::Config[:client_fork]
      Chef::Application.fatal!(unforked_interval_error_message)
    end
  end

  if Chef::Config[:recipe_url]
    cookbooks_path = Array(Chef::Config[:cookbook_path]).detect { |e| Pathname.new(e).cleanpath.to_s =~ %r{/cookbooks/*$} }
    recipes_path = File.expand_path(File.join(cookbooks_path, ".."))

    if Chef::Config[:delete_entire_chef_repo]
      Chef::Log.trace "Cleanup path #{recipes_path} before extract recipes into it"
      FileUtils.rm_rf(recipes_path, secure: true)
    end
    Chef::Log.trace "Creating path #{recipes_path} to extract recipes into"
    FileUtils.mkdir_p(recipes_path)
    tarball_path = File.join(recipes_path, "recipes.tgz")
    fetch_recipe_tarball(Chef::Config[:recipe_url], tarball_path)
    Mixlib::Archive.new(tarball_path).extract(Chef::Config.chef_repo_path, perms: false, ignore: /^\.$/)
  end

  # json_attribs should be fetched after recipe_url tarball is unpacked.
  # Otherwise it may fail if points to local file from tarball.
  if Chef::Config[:json_attribs]
    config_fetcher = Chef::ConfigFetcher.new(Chef::Config[:json_attribs])
    @chef_client_json = config_fetcher.fetch_json
  end
end

#reconfigureObject



67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# File 'lib/chef/application/solo.rb', line 67

def reconfigure
  super

  load_dot_d(Chef::Config[:solo_d_dir]) if Chef::Config[:solo_d_dir]

  set_specific_recipes

  Chef::Config[:fips] = config[:fips] if config.key? :fips

  Chef::Config[:solo] = true

  if !Chef::Config[:solo_legacy_mode]
    # Because we re-parse ARGV when we move to chef-client, we need to tidy up some options first.
    ARGV.delete("--ez")

    # For back compat reasons, we need to ensure that we try and use the cache_path as a repo first
    Chef::Log.trace "Current chef_repo_path is #{Chef::Config.chef_repo_path}"

    if !Chef::Config.key?(:cookbook_path) && !Chef::Config.key?(:chef_repo_path)
      Chef::Config.chef_repo_path = Chef::Config.find_chef_repo_path(Chef::Config[:cache_path])
    end

    Chef::Config[:local_mode] = true
    Chef::Config[:listen] = false
  else
    configure_legacy_mode!
  end
end

#run(enforce_license: false) ⇒ Object

Get this party started



54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/chef/application/solo.rb', line 54

def run(enforce_license: false)
  setup_signal_handlers
  reconfigure
  check_license_acceptance if enforce_license
  for_ezra if Chef::Config[:ez]
  if !Chef::Config[:solo_legacy_mode]
    Chef::Application::Client.new.run
  else
    setup_application
    run_application
  end
end