Module: Beaker::DSL::InstallUtils::EZBakeUtils
- Included in:
- BeakerPuppet
- Defined in:
- lib/beaker-puppet/install_utils/ezbake_utils.rb
Overview
This module contains methods to assist in installing projects from source that use ezbake for packaging.
Private helpers collapse
- LOCAL_COMMANDS_REQUIRED =
[ ['leiningen', 'lein --version', nil], ['lein-pprint', 'lein with-profile ci pprint :version', 'Must have lein-pprint installed under the :ci profile.',], ['java', 'java -version', nil], ['git', 'git --version', nil], ['rake', 'rake --version', nil], ]
Public DSL Methods collapse
-
.config ⇒ Object
Returns the value of attribute config.
Public DSL Methods collapse
-
#ezbake_dev_build(url = '[email protected]:puppetlabs/ezbake.git', branch = 'master') ⇒ Object
Install a development version of ezbake into the local m2 repository.
-
#install_from_ezbake(host) ⇒ Object
Installs leiningen project with given name and version on remote host.
-
#install_termini_from_ezbake(host) ⇒ Object
Installs termini with given name and version on remote host.
Private helpers collapse
-
#conditionally_clone(upstream_uri, local_path, branch = 'origin/HEAD') ⇒ Object
private
Only clone from given git URI if there is no existing git clone at the given local_path location.
-
#ezbake_config ⇒ Hash
private
Return the ezbake config.
-
#ezbake_install_dir ⇒ String
private
Returns the full path to the installed software on the remote host.
-
#ezbake_install_name ⇒ String
private
Retrieve the tarball installation name.
-
#ezbake_installsh(host, task = '') ⇒ Object
private
A helper that wraps the execution of install.sh in the proper ezbake installation directory.
-
#ezbake_lein_prefix ⇒ String
private
Returns a leiningen prefix with local m2 repo capability.
-
#ezbake_local_cmd(cmd, opts = {}) ⇒ bool
private
Executes a local command using system, logging the prepared command.
-
#ezbake_stage ⇒ Object
private
Prepares a staging directory for the specified project.
-
#ezbake_tools_available? ⇒ Boolean
private
Checks given host for the tools necessary to perform install_from_ezbake.
-
#ezbake_validate_support(host) ⇒ Object
private
Test for support in one place.
-
#install_ezbake_tarball_on_host(host) ⇒ Object
private
Build, copy & unpack tarball on remote host.
Class Attribute Details
.config ⇒ Object
Returns the value of attribute config.
59 60 61 |
# File 'lib/beaker-puppet/install_utils/ezbake_utils.rb', line 59 def config @config end |
Instance Method Details
#conditionally_clone(upstream_uri, local_path, branch = 'origin/HEAD') ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Only clone from given git URI if there is no existing git clone at the given local_path location.
234 235 236 237 238 239 240 241 242 243 244 |
# File 'lib/beaker-puppet/install_utils/ezbake_utils.rb', line 234 def conditionally_clone(upstream_uri, local_path, branch = 'origin/HEAD') if ezbake_local_cmd "git --work-tree=#{local_path} --git-dir=#{local_path}/.git status" ezbake_local_cmd "git --work-tree=#{local_path} --git-dir=#{local_path}/.git fetch origin" ezbake_local_cmd "git --work-tree=#{local_path} --git-dir=#{local_path}/.git checkout #{branch}" else parent_dir = File.dirname(local_path) FileUtils.mkdir_p(parent_dir) ezbake_local_cmd "git clone #{upstream_uri} #{local_path}" ezbake_local_cmd "git --work-tree=#{local_path} --git-dir=#{local_path}/.git checkout #{branch}" end end |
#ezbake_config ⇒ Hash
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Return the ezbake config.
131 132 133 |
# File 'lib/beaker-puppet/install_utils/ezbake_utils.rb', line 131 def ezbake_config EZBakeUtils.config end |
#ezbake_dev_build(url = '[email protected]:puppetlabs/ezbake.git', branch = 'master') ⇒ Object
Install a development version of ezbake into the local m2 repository
This can be useful if you want to work on a development branch of ezbake that hasn’t been released yet. Ensure your project dependencies in your development branch include a reference to the -SNAPSHOT version of the project for it to successfully pickup a pre-shipped version of ezbake.
44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/beaker-puppet/install_utils/ezbake_utils.rb', line 44 def ezbake_dev_build(url = '[email protected]:puppetlabs/ezbake.git', branch = 'master') ezbake_dir = 'tmp/ezbake' conditionally_clone url, ezbake_dir, branch lp = ezbake_lein_prefix Dir.chdir(ezbake_dir) do ezbake_local_cmd "#{lp} install", throw_on_failure: true end end |
#ezbake_install_dir ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns the full path to the installed software on the remote host.
This only returns the path, it doesn’t work out if its installed or not.
213 214 215 |
# File 'lib/beaker-puppet/install_utils/ezbake_utils.rb', line 213 def ezbake_install_dir "/root/#{ezbake_install_name}" end |
#ezbake_install_name ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Retrieve the tarball installation name. This is the name of the tarball without the .tar.gz extension, and the name of the path where it will unpack to.
199 200 201 202 203 204 |
# File 'lib/beaker-puppet/install_utils/ezbake_utils.rb', line 199 def ezbake_install_name ezbake = ezbake_config project_package_version = ezbake[:package_version] project_name = ezbake[:project] format('%s-%s', project_name, project_package_version) end |
#ezbake_installsh(host, task = '') ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
A helper that wraps the execution of install.sh in the proper ezbake installation directory.
223 224 225 |
# File 'lib/beaker-puppet/install_utils/ezbake_utils.rb', line 223 def ezbake_installsh(host, task = '') on host, "cd #{ezbake_install_dir}; bash install.sh #{task}" end |
#ezbake_lein_prefix ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a leiningen prefix with local m2 repo capability
140 141 142 143 144 145 |
# File 'lib/beaker-puppet/install_utils/ezbake_utils.rb', line 140 def ezbake_lein_prefix # Get the absolute path to the local repo m2_repo = File.join(Dir.pwd, 'tmp', 'm2-local') 'lein update-in : assoc :local-repo "\"' + m2_repo + '\"" --' end |
#ezbake_local_cmd(cmd, opts = {}) ⇒ bool
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Executes a local command using system, logging the prepared command
181 182 183 184 185 186 187 188 189 190 191 |
# File 'lib/beaker-puppet/install_utils/ezbake_utils.rb', line 181 def ezbake_local_cmd(cmd, opts = {}) opts = { throw_on_failure: false, }.merge(opts) logger.notify "localhost $ #{cmd}" result = system cmd raise "Command failure #{cmd}" if opts[:throw_on_failure] && result == false result end |
#ezbake_stage ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Prepares a staging directory for the specified project.
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
# File 'lib/beaker-puppet/install_utils/ezbake_utils.rb', line 150 def ezbake_stage # Install the PuppetDB jar into the local repository ezbake_local_cmd "#{ezbake_lein_prefix} install", throw_on_failure: true # Run ezbake stage ezbake_local_cmd "#{ezbake_lein_prefix} with-profile ezbake ezbake stage", throw_on_failure: true # Boostrap packaging, and grab configuration info from project staging_dir = File.join('target', 'staging') Dir.chdir(staging_dir) do ezbake_local_cmd 'rake package:bootstrap' load 'ezbake.rb' ezbake = EZBake::Config ezbake[:package_version] = `printf $(rake pl:print_build_param[ref] | tail -n 1)` EZBakeUtils.config = ezbake end end |
#ezbake_tools_available? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Checks given host for the tools necessary to perform install_from_ezbake.
117 118 119 120 121 122 123 124 125 |
# File 'lib/beaker-puppet/install_utils/ezbake_utils.rb', line 117 def ezbake_tools_available? LOCAL_COMMANDS_REQUIRED.each do |software_name, command, | next if system command = "Must have #{software_name} installed on development system.\n" += if raise end end |
#ezbake_validate_support(host) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Test for support in one place
69 70 71 72 73 74 |
# File 'lib/beaker-puppet/install_utils/ezbake_utils.rb', line 69 def ezbake_validate_support(host) variant, version, = host['platform'].to_array return if variant =~ /^(fedora|el|redhat|centos|debian|ubuntu)$/ raise "No support for #{variant} within ezbake_utils ..." end |
#install_ezbake_tarball_on_host(host) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Build, copy & unpack tarball on remote host
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
# File 'lib/beaker-puppet/install_utils/ezbake_utils.rb', line 80 def install_ezbake_tarball_on_host(host) ezbake_stage unless ezbake_config # Skip installation if the remote directory exists result = on host, "test -d #{ezbake_install_dir}", acceptable_exit_codes: [0, 1] return if result.exit_code == 0 ezbake_staging_dir = File.join('target', 'staging') Dir.chdir(ezbake_staging_dir) do ezbake_local_cmd 'rake package:tar' end local_tarball = ezbake_staging_dir + '/pkg/' + ezbake_install_name + '.tar.gz' remote_tarball = ezbake_install_dir + '.tar.gz' scp_to host, local_tarball, remote_tarball # untar tarball on host on host, 'tar -xzf ' + remote_tarball # Check to ensure directory exists on host, "test -d #{ezbake_install_dir}" end |
#install_from_ezbake(host) ⇒ Object
Installs leiningen project with given name and version on remote host.
16 17 18 19 20 21 |
# File 'lib/beaker-puppet/install_utils/ezbake_utils.rb', line 16 def install_from_ezbake(host) ezbake_validate_support host ezbake_tools_available? install_ezbake_tarball_on_host host ezbake_installsh host, 'service' end |
#install_termini_from_ezbake(host) ⇒ Object
Installs termini with given name and version on remote host.
27 28 29 30 31 32 |
# File 'lib/beaker-puppet/install_utils/ezbake_utils.rb', line 27 def install_termini_from_ezbake(host) ezbake_validate_support host ezbake_tools_available? install_ezbake_tarball_on_host host ezbake_installsh host, 'termini' end |