Class: Mixlib::Install::Generator::Bourne
- Inherits:
-
Base
- Object
- Base
- Mixlib::Install::Generator::Bourne
show all
- Defined in:
- lib/mixlib/install/generator/bourne.rb
Instance Attribute Summary
Attributes inherited from Base
#options
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Base
get_script, #get_script, #initialize
Class Method Details
37
38
39
|
# File 'lib/mixlib/install/generator/bourne.rb', line 37
def self.detect_platform_sh
get_script("platform_detection.sh")
end
|
.install_sh(context) ⇒ Object
24
25
26
27
28
29
30
31
32
33
34
35
|
# File 'lib/mixlib/install/generator/bourne.rb', line 24
def self.install_sh(context)
install_command = []
install_command << get_script("helpers.sh", context)
install_command << get_script("script_cli_parameters.sh", context)
install_command << get_script("check_product.sh")
install_command << get_script("platform_detection.sh")
install_command << get_script("proxy_env.sh")
install_command << get_script("fetch_metadata.sh", context)
install_command << get_script("fetch_package.sh")
install_command << get_script("install_package.sh")
install_command.join("\n\n")
end
|
.script_base_path ⇒ Object
41
42
43
|
# File 'lib/mixlib/install/generator/bourne.rb', line 41
def self.script_base_path
File.join(File.dirname(__FILE__), "bourne/scripts")
end
|
Instance Method Details
#install_command ⇒ Object
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# File 'lib/mixlib/install/generator/bourne.rb', line 45
def install_command
install_command = []
install_command << get_script("helpers.sh", user_agent_headers: options.)
install_command << render_variables
install_command << get_script("check_product.sh")
install_command << get_script("platform_detection.sh")
install_command << get_script("proxy_env.sh")
install_command << get_script("fetch_metadata.sh", license_id: options.license_id, base_url: options.base_url)
install_command << get_script("fetch_package.sh")
install_command << get_script("install_package.sh")
install_command.join("\n\n")
end
|
#install_command_vars ⇒ Object
78
79
80
81
|
# File 'lib/mixlib/install/generator/bourne.rb', line 78
def install_command_vars
return "" if options.install_command_options.nil?
options.install_command_options.map { |key, value| "#{key}='#{value}'" }.join("\n")
end
|
#render_variables ⇒ Object
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# File 'lib/mixlib/install/generator/bourne.rb', line 59
def render_variables
vars = <<EOS
project=#{options.product_name}
version=#{options.product_version}
channel=#{options.channel}
#{"license_id=#{options.license_id}" if options.license_id && !options.license_id.to_s.empty?}
#{"base_api_url=#{options.base_url}" if options.base_url && !options.base_url.to_s.empty?}
EOS
vars += <<EOS
# Use CHEF_LICENSE_KEY from execution environment if license_id not set
if [ -z "$license_id" ] && [ -n "$CHEF_LICENSE_KEY" ]; then
license_id="$CHEF_LICENSE_KEY"
fi
EOS
vars += install_command_vars
vars
end
|