Class: Mixlib::Install::Generator::Bourne

Inherits:
Base
  • Object
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

Constructor Details

This class inherits a constructor from Mixlib::Install::Generator::Base

Class Method Details

.detect_platform_shObject



36
37
38
# File 'lib/mixlib/install/generator/bourne.rb', line 36

def self.detect_platform_sh
  get_script("platform_detection.sh")
end

.install_sh(context) ⇒ Object



25
26
27
28
29
30
31
32
33
34
# File 'lib/mixlib/install/generator/bourne.rb', line 25

def self.install_sh(context)
  install_command = []
  install_command << get_script("helpers.sh")
  install_command << get_script("script_cli_parameters.sh")
  install_command << get_script("platform_detection.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_pathObject



40
41
42
# File 'lib/mixlib/install/generator/bourne.rb', line 40

def self.script_base_path
  File.join(File.dirname(__FILE__), "bourne/scripts")
end

Instance Method Details

#artifactory_urlsObject



68
69
70
71
# File 'lib/mixlib/install/generator/bourne.rb', line 68

def artifactory_urls
  artifacts = Mixlib::Install::Backend::Artifactory.new(options).info
  get_script("artifactory_urls.sh", artifacts: artifacts)
end

#install_commandObject



44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# File 'lib/mixlib/install/generator/bourne.rb', line 44

def install_command
  install_command = []
  install_command << get_script("helpers.sh")
  install_command << render_variables
  install_command << get_script("platform_detection.sh")
  if options.for_artifactory?
    install_command << artifactory_urls
  else
    install_command << get_script("fetch_metadata.sh")
  end
  install_command << get_script("fetch_package.sh")
  install_command << get_script("install_package.sh")

  install_command.join("\n\n")
end

#render_variablesObject



60
61
62
63
64
65
66
# File 'lib/mixlib/install/generator/bourne.rb', line 60

def render_variables
  <<EOS
project=#{options.product_name}
version=#{options.product_version}
channel=#{options.channel}
EOS
end