Module: Beaker::DSL::InstallUtils::FOSSUtils

Includes:
AIODefaults, FOSSDefaults, PuppetUtils, WindowsUtils
Included in:
Beaker::DSL::InstallUtils
Defined in:
lib/beaker/dsl/install_utils/foss_utils.rb

Overview

This module contains methods to install FOSS puppet from various sources

To mix this is into a class you need the following:

  • a method hosts that yields any hosts implementing Host‘s interface to act upon.

  • a method options that provides an options hash, see Options::OptionsHash

  • the module Roles that provides access to the various hosts implementing Host‘s interface to act upon

  • the module Wrappers the provides convenience methods for Command creation

Constant Summary collapse

SourcePath =

The default install path

"/opt/puppet-git-repos"
GitURI =

A regex to know if the uri passed is pointing to a git repo

%r{^(git|https?|file)://|^git@|^gitmirror@}
GitHubSig =

Github’s ssh signature for cloning via ssh

'github.com,207.97.227.239 ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ=='

Constants included from FOSSDefaults

Beaker::DSL::InstallUtils::FOSSDefaults::FOSS_DEFAULTS, Beaker::DSL::InstallUtils::FOSSDefaults::FOSS_DEFAULT_DOWNLOAD_URLS

Constants included from AIODefaults

AIODefaults::AIO_DEFAULTS

Instance Method Summary collapse

Methods included from WindowsUtils

#create_install_msi_batch_on, #get_temp_path, #install_msi_on, #msi_install_script

Methods included from PuppetUtils

#add_puppet_paths_on, #configure_defaults_on, #configure_type_defaults_on, #construct_puppet_path, #normalize_type, #remove_defaults_on, #remove_puppet_paths_on

Methods included from FOSSDefaults

#add_foss_defaults_on, #add_platform_foss_defaults, #remove_foss_defaults_on, #remove_platform_foss_defaults

Methods included from AIODefaults

#add_aio_defaults_on, #add_platform_aio_defaults, #remove_aio_defaults_on, #remove_platform_aio_defaults

Instance Method Details

#build_git_url(project_name, git_fork = nil, git_server = nil, git_protocol = 'https') ⇒ String Also known as: build_giturl

TODO: enable other protocols, clarify, git-scm.com/book/ch4-1.html

Parameters:

  • project_name (String)
  • git_fork (String) (defaults to: nil)

    When not provided will use PROJECT_FORK environment variable

  • git_server (String) (defaults to: nil)

    When not provided will use PROJECT_SERVER environment variable

  • git_protocol (String) (defaults to: 'https')

    ‘git’,‘ssh’,‘https’

Returns:

  • (String)

    Returns a git-usable url



50
51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 50

def build_git_url(project_name, git_fork = nil, git_server = nil, git_protocol='https')
  git_fork   ||= lookup_in_env('FORK',   project_name, 'puppetlabs')
  git_server ||= lookup_in_env('SERVER', project_name, 'github.com')

  case git_protocol
  when /(ssh|git)/
    git_protocol = 'git@'
  when /https/
    git_protocol = 'https://'
  end

  repo = (git_server == 'github.com') ? "#{git_fork}/#{project_name}.git" : "#{git_fork}-#{project_name}.git"
  return git_protocol == 'git@' ? "#{git_protocol}#{git_server}:#{repo}" : "#{git_protocol}#{git_server}/#{repo}"
end

#clone_git_repo_on(host, path, repository, opts = {}) ⇒ Object

Note:

This requires the helper methods:

  • Helpers#on

Parameters:

  • host (Host)

    An object implementing Hosts‘s interface.

  • path (String)

    The path on the remote [host] to the repository

  • repository (Hash{Symbol=>String})

    A hash representing repo info like that emitted by #extract_repo_info_from



148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 148

def clone_git_repo_on host, path, repository, opts = {}
  opts = {:accept_all_exit_codes => true}.merge(opts)
  name          = repository[:name]
  repo          = repository[:path]
  rev           = repository[:rev]
  depth         = repository[:depth]
  depth_branch  = repository[:depth_branch]
  target        = "#{path}/#{name}"

  if (depth_branch.nil?)
    depth_branch = rev
  end

  clone_cmd = "git clone #{repo} #{target}"
  if (depth)
    clone_cmd = "git clone --branch #{depth_branch} --depth #{depth} #{repo} #{target}"
  end

  logger.notify("\n  * Clone #{repo} if needed")

  on host, "test -d #{path} || mkdir -p #{path}", opts
  on host, "test -d #{target} || #{clone_cmd}", opts

  logger.notify("\n  * Update #{name} and check out revision #{rev}")
  commands = ["cd #{target}",
              "remote rm origin",
              "remote add origin #{repo}",
              "fetch origin +refs/pull/*:refs/remotes/origin/pr/* +refs/heads/*:refs/remotes/origin/*",
              "clean -fdx",
              "checkout -f #{rev}"]
  on host, commands.join(" && git "), opts
end

#compute_puppet_msi_name(host, opts) ⇒ 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.



531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 531

def compute_puppet_msi_name(host, opts)
  version = opts[:version]
  install_32 = host['install_32'] || opts['install_32']
  less_than_3_dot_7 = version && version_is_less(version, '3.7')

  # If there's no version declared, install the latest in the 3.x series
  if not version
    if !host.is_x86_64? || install_32
      host['dist'] = 'puppet-latest'
    else
      host['dist'] = 'puppet-x64-latest'
    end

  # Install Puppet 3.x with the x86 installer if:
  # - we are on puppet < 3.7, or
  # - we are less than puppet 4.0 and on an x86 host, or
  # - we have install_32 set on host or globally
  # Install Puppet 3.x with the x64 installer if:
  # - we are otherwise trying to install Puppet 3.x on a x64 host
  elsif less_than_3_dot_7 or not host.is_x86_64? or install_32
    host['dist'] = "puppet-#{version}"

  elsif host.is_x86_64?
     host['dist'] = "puppet-#{version}-x64"

  else
    raise "I don't understand how to install Puppet version: #{version}"
  end
end

#configure_puppet(opts = {}) ⇒ Object

Deprecated.

Use #configure_puppet_on instead.



370
371
372
373
374
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 370

def configure_puppet(opts={})
  hosts.each do |host|
    configure_puppet_on(host,opts)
  end
end

#configure_puppet_on(hosts, opts = {}) ⇒ Object

Configure puppet.conf on the given host(s) based upon a provided hash

Examples:

will configure /etc/puppet.conf on the puppet master.

config = {
  'main' => {
    'server'   => 'testbox.test.local',
    'certname' => 'testbox.test.local',
    'logdir'   => '/var/log/puppet',
    'vardir'   => '/var/lib/puppet',
    'ssldir'   => '/var/lib/puppet/ssl',
    'rundir'   => '/var/run/puppet'
  },
  'agent' => {
    'environment' => 'dev'
  }
}
configure_puppet(master, config)

Parameters:

  • hosts (Host, Array<Host>, String, Symbol)

    One or more hosts to act upon, or a role (String or Symbol) that identifies one or more hosts.

  • opts (Hash{Symbol=>String}) (defaults to: {})

Options Hash (opts):

  • :main (Hash{String=>String})

    configure the main section of puppet.conf

  • :agent (Hash{String=>String})

    configure the agent section of puppet.conf

Returns:

  • nil



400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 400

def configure_puppet_on(hosts, opts = {})
  block_on hosts do |host|
    if host['platform'] =~ /windows/
      puppet_conf = host.puppet['config']
      conf_data = ''
      opts.each do |section,options|
        conf_data << "[#{section}]`n"
        options.each do |option,value|
          conf_data << "#{option}=#{value}`n"
        end
        conf_data << "`n"
      end
      on host, powershell("\$text = \\\"#{conf_data}\\\"; Set-Content -path '#{puppet_conf}' -value \$text")
    else
      puppet_conf = host.puppet['config']
      conf_data = ''
      opts.each do |section,options|
        conf_data << "[#{section}]\n"
        options.each do |option,value|
          conf_data << "#{option}=#{value}\n"
        end
        conf_data << "\n"
      end
      on host, "echo \"#{conf_data}\" > #{puppet_conf}"
    end
  end
end

#extract_repo_info_from(uri) ⇒ Hash{Symbol=>String}

Returns a hash containing the project name, repository path, and revision (defaults to HEAD)

Examples:

Usage

project = extract_repo_info_from '[email protected]:puppetlabs/SuperSecretSauce#what_is_justin_doing'

puts project[:name]
#=> 'SuperSecretSauce'

puts project[:rev]
#=> 'what_is_justin_doing'

Parameters:

  • uri (String)

    A uri in the format of <git uri>#<revision> the ‘git://`, `http://`, `https://`, and ssh (if cloning as the remote git user) protocols are valid for <git uri>

Returns:

  • (Hash{Symbol=>String})

    Returns a hash containing the project name, repository path, and revision (defaults to HEAD)



84
85
86
87
88
89
90
91
92
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 84

def extract_repo_info_from uri
  require 'pathname'
  project = {}
  repo, rev = uri.split('#', 2)
  project[:name] = Pathname.new(repo).basename('.git').to_s
  project[:path] = repo
  project[:rev]  = rev || 'HEAD'
  return project
end

#find_git_repo_versions(host, path, repository) ⇒ Hash

Note:

This requires the helper methods:

  • Helpers#on

Returns Executes git describe on [host] and returns a Hash with the key of [repository] and value of the output from git describe.

Examples:

Getting multiple project versions

versions = [puppet_repo, facter_repo, hiera_repo].inject({}) do |vers, repo_info|
  vers.merge(find_git_repo_versions(host, '/opt/git-puppet-repos', repo_info) )
end

Parameters:

  • host (Host)

    An object implementing Hosts‘s interface.

  • path (String)

    The path on the remote [host] to the repository

  • repository (Hash{Symbol=>String})

    A hash representing repo info like that emitted by #extract_repo_info_from

Returns:

  • (Hash)

    Executes git describe on [host] and returns a Hash with the key of [repository] and value of the output from git describe.



126
127
128
129
130
131
132
133
134
135
136
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 126

def find_git_repo_versions host, path, repository
  logger.notify("\n  * Grab version for #{repository[:name]}")

  version = {}
  on host, "cd #{path}/#{repository[:name]} && " +
            "git describe || true" do
    version[repository[:name]] = stdout.chomp
  end

  version
end

#install_a_puppet_msi_on(hosts, opts) ⇒ 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.



591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 591

def install_a_puppet_msi_on(hosts, opts)
  block_on hosts do |host|
    link = "#{opts[:win_download_url]}/#{host['dist']}.msi"
    if not link_exists?( link )
      raise "Puppet MSI at #{link} does not exist!"
    end


    msi_download_path = "#{get_temp_path(host)}\\#{host['dist']}.msi"

    if host.is_cygwin?
      # NOTE: it is critical that -o be before -O on Windows
      on host, "curl -o \"#{msi_download_path}\" -O #{link}"

      #Because the msi installer doesn't add Puppet to the environment path
      #Add both potential paths for simplicity
      #NOTE - this is unnecessary if the host has been correctly identified as 'foss' during set up
      puppetbin_path = "\"/cygdrive/c/Program Files (x86)/Puppet Labs/Puppet/bin\":\"/cygdrive/c/Program Files/Puppet Labs/Puppet/bin\""
      on host, %Q{ echo 'export PATH=$PATH:#{puppetbin_path}' > /etc/bash.bashrc }
    else
      on host, powershell("$webclient = New-Object System.Net.WebClient;  $webclient.DownloadFile('#{link}','#{msi_download_path}')")
    end

    opts = { :debug => host[:pe_debug] || opts[:pe_debug] }
    install_msi_on(host, msi_download_path, {}, opts)

    configure_type_defaults_on( host )
    if not host.is_cygwin?
      host.mkdir_p host['distmoduledir']
    end
  end
end

#install_cert_on_windows(host, cert_name, cert) ⇒ Object

This method will install a pem file certificate on a windows host

Parameters:

  • host (Host)

    A host object

  • cert_name (String)

    The name of the pem file

  • cert (String)

    The contents of the certificate



1391
1392
1393
1394
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 1391

def install_cert_on_windows(host, cert_name, cert)
  create_remote_file(host, "C:\\Windows\\Temp\\#{cert_name}.pem", cert)
  on host, "certutil -v -addstore Root C:\\Windows\\Temp\\#{cert_name}.pem"
end

#install_from_git_on(host, path, repository, opts = {}) ⇒ Object Also known as: install_from_git

Note:

This assumes the target repository application can be installed via an install.rb ruby script.



184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 184

def install_from_git_on host, path, repository, opts = {}
  opts = {:accept_all_exit_codes => true}.merge(opts)
  clone_git_repo_on host, path, repository, opts
  name          = repository[:name]
  logger.notify("\n  * Install #{name} on the system")
  # The solaris ruby IPS package has bindir set to /usr/ruby/1.8/bin.
  # However, this is not the path to which we want to deliver our
  # binaries. So if we are using solaris, we have to pass the bin and
  # sbin directories to the install.rb
  target        = "#{path}/#{name}"
  install_opts = ''
  install_opts = '--bindir=/usr/bin --sbindir=/usr/sbin' if host['platform'].include? 'solaris'

  on host,  "cd #{target} && " +
            "if [ -f install.rb ]; then " +
            "ruby ./install.rb #{install_opts}; " +
            "else true; fi", opts
end

#install_packages_from_local_dev_repo(host, package_name) ⇒ Object

Note:

This method only works on redhat-like and debian-like hosts.

Note:

This method is paired to be run directly after #install_puppetlabs_dev_repo

Installs packages from the local development repository on the given host

Parameters:

  • host (Host)

    An object implementing Hosts‘s interface.

  • package_name (Regexp)

    The name of the package whose repository is being installed.



1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 1038

def install_packages_from_local_dev_repo( host, package_name )
  if host['platform'] =~ /debian|ubuntu|cumulus/
    find_filename = '*.deb'
    find_command  = 'dpkg -i'
  elsif host['platform'] =~ /fedora|el|centos/
    find_filename = '*.rpm'
    find_command  = 'rpm -ivh'
  else
    raise "No repository installation step for #{host['platform']} yet..."
  end
  find_command = "find /root/#{package_name} -type f -name '#{find_filename}' -exec #{find_command} {} \\;"
  on host, find_command
  configure_type_defaults_on( host )
end

#install_puppet(opts = {}) ⇒ Object

Deprecated.

Use #install_puppet_on instead.



205
206
207
208
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 205

def install_puppet(opts = {})
  #send in the global hosts!
  install_puppet_on(hosts, opts)
end

#install_puppet_agent_dev_repo_on(hosts, opts) ⇒ Object Also known as: install_puppetagent_dev_repo

Note:

on windows, the :ruby_arch host parameter can determine in addition

Install development repo of the puppet-agent on the given host(s). Downloaded from location of the form DEV_BUILDS_URL/puppet-agent/AGENT_VERSION/repos

to other settings whether the 32 or 64bit install is used

Examples:

install_puppet_agent_dev_repo_on(host, { :puppet_agent_sha => 'd3377feaeac173aada3a2c2cedd141eb610960a7', :puppet_agent_version => '1.1.1.225.gd3377fe'  })

Parameters:

  • hosts (Host, Array<Host>, String, Symbol)

    One or more hosts to act upon, or a role (String or Symbol) that identifies one or more hosts.

  • opts (Hash{Symbol=>String})

    An options hash

Options Hash (opts):

  • :puppet_agent_version (String)

    The version of puppet-agent to install

  • :puppet_agent_sha (String)

    The sha of puppet-agent to install, defaults to provided puppet_agent_version

  • :copy_base_local (String)

    Directory where puppet-agent artifact will be stored locally (default: ‘tmp/repo_configs’)

  • :copy_dir_external (String)

    Directory where puppet-agent artifact will be pushed to on the external machine (default: ‘/root’)

  • :puppet_collection (String)

    Defaults to ‘PC1’

  • :dev_builds_url (String)

    Base URL to pull artifacts from

  • :copy_base_local (String)

    Directory where puppet-agent artifact will be stored locally (default: ‘tmp/repo_configs’)

  • :copy_dir_external (String)

    Directory where puppet-agent artifact will be pushed to on the external machine (default: ‘/root’)

Returns:

  • nil



1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 1084

def install_puppet_agent_dev_repo_on( hosts, opts )

  opts[:puppet_agent_version] ||= opts[:version] #backward compatability
  if not opts[:puppet_agent_version]
    raise "must provide :puppet_agent_version (puppet-agent version) for install_puppet_agent_dev_repo_on"
  end

  copy_base_external_defaults = Hash.new('/root').merge({
    :windows => '`cygpath -smF 35`/',
    :osx => '/var/root'
  })
  block_on hosts do |host|
    variant, version, arch, codename = host['platform'].to_array
    opts = FOSS_DEFAULT_DOWNLOAD_URLS.merge(opts)
    opts[:download_url] = "#{opts[:dev_builds_url]}/puppet-agent/#{ opts[:puppet_agent_sha] || opts[:puppet_agent_version] }/repos/"
    opts[:copy_base_local]    ||= File.join('tmp', 'repo_configs')
    opts[:copy_dir_external]  ||= copy_base_external_defaults[variant.to_sym]
    opts[:puppet_collection] ||= 'PC1'
    add_role(host, 'aio') #we are installing agent, so we want aio role
    release_path = opts[:download_url]
    variant, version, arch, codename = host['platform'].to_array
    copy_dir_local = File.join(opts[:copy_base_local], variant)
    onhost_copy_base = opts[:copy_dir_external]

    case variant
    when /^eos/
      release_path_end, release_file = host.get_puppet_agent_package_info(
        opts[:puppet_collection], opts[:puppet_agent_version] )
      release_path << release_path_end
    when /^(fedora|el|centos|sles)$/
      variant = ((variant == 'centos') ? 'el' : variant)
      release_path << "#{variant}/#{version}/#{opts[:puppet_collection]}/#{arch}"
      release_file = "puppet-agent-#{opts[:puppet_agent_version]}-1.#{variant}#{version}.#{arch}.rpm"
    when /^(aix)$/
      if arch == 'power' then arch = 'ppc' end
      release_path << "#{variant}/#{version}/#{opts[:puppet_collection]}/#{arch}"
      release_file = "puppet-agent-#{opts[:puppet_agent_version]}-1.#{variant}#{version}.#{arch}.rpm"
    when /^(debian|ubuntu|cumulus)$/
      if arch == 'x86_64'
        arch = 'amd64'
      end
      release_path << "deb/#{codename}/#{opts[:puppet_collection]}"
      release_file = "puppet-agent_#{opts[:puppet_agent_version]}-1#{codename}_#{arch}.deb"
    when /^windows$/
      release_path << 'windows'
      is_config_32 = host['ruby_arch'] == 'x86' || host['install_32'] || opts['install_32']
      should_install_64bit = host.is_x86_64? && !is_config_32
      # only install 64bit builds if
      # - we do not have install_32 set on host
      # - we do not have install_32 set globally
      arch_suffix = should_install_64bit ? '64' : '86'
      release_file = "puppet-agent-x#{arch_suffix}.msi"
    when /^osx$/
      mac_pkg_name = "puppet-agent-#{opts[:puppet_agent_version]}"
      version = version[0,2] + '.' + version[2,2] if (variant =~ /osx/ && !version.include?("."))
      path_chunk = ''
      # newest hotness
      path_chunk = "apple/#{version}/#{opts[:puppet_collection]}/#{arch}"
      release_path << path_chunk
      # moved to doing this when 'el capitan' came out & the objection was
      # raised that the code name wasn't a fact, & as such can be hard to script
      # example: puppet-agent-0.1.0-1.osx10.9.dmg
      release_file = "#{mac_pkg_name}-1.osx#{version}.dmg"
      if not link_exists?("#{release_path}/#{release_file}") # new hotness
        # little older change involved the code name as only difference from above
        # example: puppet-agent-0.1.0-1.mavericks.dmg
        release_file = "#{mac_pkg_name}-1.#{codename}.dmg"
      end
      if not link_exists?("#{release_path}/#{release_file}") # oops, try the old stuff
        # the old school
        release_path.chomp!(path_chunk) #remove chunk that didn't work
        release_path << "apple/#{opts[:puppet_collection]}"
        # example: puppet-agent-0.1.0-osx-10.9-x86_64.dmg
        release_file = "#{mac_pkg_name}-#{variant}-#{version}-x86_64.dmg"
      end
    when /^solaris$/
      if arch == 'x86_64'
        arch = 'i386'
      end
      release_path << "solaris/#{version}/#{opts[:puppet_collection]}"
      solaris_revision_conjunction = '-'
      revision = '1'
      if version == '10'
        # Solaris 10 uses / as the root user directory. Solaris 11 uses /root.
        onhost_copy_base = '/'
        solaris_release_version = ''
        pkg_suffix = 'pkg.gz'
        solaris_name_conjunction = '-'
        component_version = opts[:puppet_agent_version]
      elsif version == '11'
        # Ref:
        # http://www.oracle.com/technetwork/articles/servers-storage-admin/ips-package-versioning-2232906.html
        #
        # Example to show package name components:
        #   Full package name: [email protected],5.11-1.sparc.p5p
        #   Schema: <component-name><solaris_name_conjunction><component_version><solaris_release_version><solaris_revision_conjunction><revision>.<arch>.<pkg_suffix>
        solaris_release_version = ',5.11' # injecting comma to prevent from adding another var
        pkg_suffix = 'p5p'
        solaris_name_conjunction = '@'
        component_version = opts[:puppet_agent_version].dup
        component_version.gsub!(/[a-zA-Z]/, '')
        component_version.gsub!(/(^-)|(-$)/, '')
        # Here we strip leading 0 from version components but leave
        # singular 0 on their own.
        component_version = component_version.split('-').join('.')
        component_version = component_version.split('.').map(&:to_i).join('.')
      end
      release_file = "puppet-agent#{solaris_name_conjunction}#{component_version}#{solaris_release_version}#{solaris_revision_conjunction}#{revision}.#{arch}.#{pkg_suffix}"
      if not link_exists?("#{release_path}/#{release_file}")
        release_file = "puppet-agent#{solaris_name_conjunction}#{component_version}#{solaris_release_version}.#{arch}.#{pkg_suffix}"
      end
    else
      raise "No repository installation step for #{variant} yet..."
    end

    if host['platform'] =~ /eos/
      host.get_remote_file( "#{release_path}/#{release_file}" )
    else
      onhost_copied_file = File.join(onhost_copy_base, release_file)
      fetch_http_file( release_path, release_file, copy_dir_local)
      scp_to host, File.join(copy_dir_local, release_file), onhost_copy_base
    end

    case variant
    when /^eos/
      host.install_from_file( release_file )
    when /^(fedora|el|centos|sles)$/
      on host, "rpm -ivh #{onhost_copied_file}"
    when /^(aix)$/
      # NOTE: AIX does not support repo management. This block assumes
      # that the desired rpm has been mirrored to the 'repos' location.

      # install the repo file
      on host, "rpm -ivh #{onhost_copied_file}"
    when /^(debian|ubuntu|cumulus)$/
      on host, "dpkg -i --force-all #{onhost_copied_file}"
      on host, "apt-get update"
    when /^windows$/
      result = on host, "echo #{onhost_copied_file}"
      onhost_copied_file = result.raw_output.chomp
      opts = { :debug => host[:pe_debug] || opts[:pe_debug] }
      install_msi_on(host, onhost_copied_file, {}, opts)
    when /^osx$/
      host.install_package("#{mac_pkg_name}*")
    when /^solaris$/
      if version == '10'
        noask = <<NOASK
# Write the noask file to a temporary directory
# please see man -s 4 admin for details about this file:
# http://www.opensolarisforum.org/man/man4/admin.html
#
# The key thing we don't want to prompt for are conflicting files.
# The other nocheck settings are mostly defensive to prevent prompts
# We _do_ want to check for available free space and abort if there is
# not enough
mail=
# Overwrite already installed instances
instance=overwrite
# Do not bother checking for partially installed packages
partial=nocheck
# Do not bother checking the runlevel
runlevel=nocheck
# Do not bother checking package dependencies (We take care of this)
idepend=nocheck
rdepend=nocheck
# DO check for available free space and abort if there isn't enough
space=quit
# Do not check for setuid files.
setuid=nocheck
# Do not check if files conflict with other packages
conflict=nocheck
# We have no action scripts.  Do not check for them.
action=nocheck
# Install to the default base directory.
basedir=default
NOASK
        create_remote_file host, File.join(onhost_copy_base, 'noask'), noask
        on host, "gunzip -c #{release_file} | pkgadd -d /dev/stdin -a noask -n all"
      elsif version == '11'
        on host, "pkg install -g #{release_file} puppet-agent"
      end
    end
    configure_type_defaults_on( host )
  end
end

#install_puppet_agent_from_dmg_on(hosts, opts) ⇒ 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.

Installs puppet-agent and dependencies from dmg on provided host(s).

Parameters:

  • hosts (Host, Array<Host>, String, Symbol)

    One or more hosts to act upon, or a role (String or Symbol) that identifies one or more hosts.

  • opts (Hash{Symbol=>String})

    An options hash

Options Hash (opts):

  • :puppet_agent_version (String)

    The version of Puppet Agent to install, defaults to latest

  • :mac_download_url (String)

    Url to download msi pattern of %url%/puppet-%version%.dmg

  • :puppet_collection (String)

    Defaults to ‘PC1’

Returns:

  • nil



708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 708

def install_puppet_agent_from_dmg_on(hosts, opts)
  opts[:puppet_collection] ||= 'PC1'
  opts[:puppet_collection] = opts[:puppet_collection].upcase #needs to be upcase, more lovely consistency
  block_on hosts do |host|

    add_role(host, 'aio') #we are installing agent, so we want aio role

    variant, version, arch, codename = host['platform'].to_array
    agent_version = opts[:puppet_agent_version] || 'latest'
    pkg_name = "puppet-agent-#{agent_version}*"
    if agent_version == 'latest'
      dmg_name = "puppet-agent-#{agent_version}.dmg"
      on host, "curl -O #{opts[:mac_download_url]}/#{dmg_name}"
    else
      dmg_name = "puppet-agent-#{agent_version}-osx-#{version}-x86_64.dmg"
      on host, "curl -O #{opts[:mac_download_url]}/#{opts[:puppet_collection]}/#{dmg_name}"
    end

    host.install_package(pkg_name)

    configure_type_defaults_on( host )
  end
end

#install_puppet_agent_from_msi_on(hosts, opts) ⇒ Object

Note:

on windows, the :ruby_arch host parameter can determine in addition

Installs Puppet Agent and dependencies from msi on provided host(s).

to other settings whether the 32 or 64bit install is used

Parameters:

  • hosts (Host, Array<Host>, String, Symbol)

    One or more hosts to act upon, or a role (String or Symbol) that identifies one or more hosts.

  • opts (Hash{Symbol=>String})

    An options hash

Options Hash (opts):

  • :puppet_agent_version (String)

    The version of Puppet Agent to install

  • :win_download_url (String)

    The url to download puppet from



571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 571

def install_puppet_agent_from_msi_on(hosts, opts)
  block_on hosts do |host|

    add_role(host, 'aio') #we are installing agent, so we want aio role
    is_config_32 = true == (host['ruby_arch'] == 'x86') || host['install_32'] || opts['install_32']
    should_install_64bit = host.is_x86_64? && !is_config_32
    arch = should_install_64bit ? 'x64' : 'x86'

    # If we don't specify a version install the latest MSI for puppet-agent
    if opts[:puppet_agent_version]
      host['dist'] = "puppet-agent-#{opts[:puppet_agent_version]}-#{arch}"
    else
      host['dist'] = "puppet-agent-#{arch}-latest"
    end

    install_a_puppet_msi_on(host, opts)
  end
end

#install_puppet_agent_on(hosts, opts) ⇒ Object

Note:

This will attempt to add a repository for apt.puppetlabs.com on Debian, Ubuntu, or Cumulus machines, or yum.puppetlabs.com on EL or Fedora machines, then install the package ‘puppet-agent’.

Install Puppet Agent based on specified hosts using provided options

Examples:

will install puppet-agent 1.1.0 from native puppetlabs provided packages wherever possible and will fail over to gem installing latest puppet

install_puppet_agent_on(hosts, {
  :puppet_agent_version          => '1.1.0',
  :default_action                => 'gem_install',
 })

Will install latest packages on Enterprise Linux, Debian based distros, Windows, OSX and fail hard on all othere platforms.

install_puppet_agent_on(hosts)

Parameters:

  • hosts (Host, Array<Host>, String, Symbol)

    One or more hosts to act upon, or a role (String or Symbol) that identifies one or more hosts.

  • opts (Hash{Symbol=>String})

Options Hash (opts):

  • :puppet_agent_version (String)

    Version of puppet to download

  • :puppet_gem_version (String)

    Version of puppet to install via gem if no puppet-agent package is available

  • :mac_download_url (String)

    Url to download msi pattern of %url%/puppet-agent-%version%.msi

  • :win_download_url (String)

    Url to download dmg pattern of %url%/puppet-agent-%version%.msi

  • :puppet_collection (String)

    Defaults to ‘pc1’

Returns:

  • nil

Raises:

  • (StandardError)

    When encountering an unsupported platform by default, or if gem cannot be found when default_action => ‘gem_install’

  • (FailTest)

    When error occurs during the actual installation process



327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 327

def install_puppet_agent_on(hosts, opts)
  opts = FOSS_DEFAULT_DOWNLOAD_URLS.merge(opts)
  opts[:puppet_collection] ||= 'pc1' #hi!  i'm case sensitive!  be careful!
  opts[:puppet_agent_version] ||= opts[:version] #backwards compatability with old parameter name

  block_on hosts do |host|
    add_role(host, 'aio') #we are installing agent, so we want aio role
    case host['platform']
    when /el-4|sles/
      # pe-only agent, get from dev repo
      logger.warn("install_puppet_agent_on for pe-only platform #{host['platform']} - use install_puppet_agent_pe_promoted_repo_on")
    when /el-|fedora/
      install_puppetlabs_release_repo(host, opts[:puppet_collection])
      if opts[:puppet_agent_version]
        host.install_package("puppet-agent-#{opts[:puppet_agent_version]}")
      else
        host.install_package('puppet-agent')
      end
    when /debian|ubuntu|cumulus/
      install_puppetlabs_release_repo(host, opts[:puppet_collection])
      if opts[:puppet_agent_version]
        host.install_package("puppet-agent=#{opts[:puppet_agent_version]}-1#{host['platform'].codename}")
      else
        host.install_package('puppet-agent')
      end
    when /windows/
      install_puppet_agent_from_msi_on(host, opts)
    when /osx/
      install_puppet_agent_from_dmg_on(host, opts)
    else
      if opts[:default_action] == 'gem_install'
        opts[:version] = opts[:puppet_gem_version]
        install_puppet_from_gem_on(host, opts)
        on host, "echo '' >> #{host.puppet['hiera_config']}"
      else
        raise "install_puppet_agent_on() called for unsupported " +
              "platform '#{host['platform']}' on '#{host.name}'"
      end
    end
  end
end

#install_puppet_agent_pe_promoted_repo_on(hosts, opts) ⇒ Object

Note:

on windows, the :ruby_arch host parameter can determine in addition

Install shared repo of the puppet-agent on the given host(s). Downloaded from location of the form PE_PROMOTED_BUILDS_URL/PE_VER/puppet-agent/AGENT_VERSION/repo

to other settings whether the 32 or 64bit install is used

Examples:

install_puppet_agent_pe_promoted_repo_on(host, { :puppet_agent_version => '1.1.0.227', :pe_ver => '4.0.0-rc1'})

Parameters:

  • hosts (Host, Array<Host>, String, Symbol)

    One or more hosts to act upon, or a role (String or Symbol) that identifies one or more hosts.

  • opts (Hash{Symbol=>String})

    An options hash

Options Hash (opts):

  • :puppet_agent_version (String)

    The version of puppet-agent to install, defaults to ‘latest’

  • :pe_ver (String)

    The version of PE (will also use host), defaults to ‘4.0’

  • :copy_base_local (String)

    Directory where puppet-agent artifact will be stored locally (default: ‘tmp/repo_configs’)

  • :copy_dir_external (String)

    Directory where puppet-agent artifact will be pushed to on the external machine (default: ‘/root’)

  • :puppet_collection (String)

    Defaults to ‘PC1’

  • :pe_promoted_builds_url (String)

    Base URL to pull artifacts from

Returns:

  • nil



1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 1295

def install_puppet_agent_pe_promoted_repo_on( hosts, opts )
  opts[:puppet_agent_version] ||= 'latest'

  copy_base_external_defaults = Hash.new('/root').merge({
    :windows => '`cygpath -smF 35`/',
    :osx => '/var/root'
  })
  block_on hosts do |host|
    pe_ver = host[:pe_ver] || opts[:pe_ver] || '4.0.0-rc1'
    variant, version, arch, codename = host['platform'].to_array
    opts = FOSS_DEFAULT_DOWNLOAD_URLS.merge(opts)
    opts[:download_url] = "#{opts[:pe_promoted_builds_url]}/puppet-agent/#{ pe_ver }/#{ opts[:puppet_agent_version] }/repos"
    opts[:copy_base_local]    ||= File.join('tmp', 'repo_configs')
    opts[:copy_dir_external]  ||= copy_base_external_defaults[variant.to_sym]
    opts[:puppet_collection] ||= 'PC1'
    add_role(host, 'aio') #we are installing agent, so we want aio role
    release_path = opts[:download_url]
    variant, version, arch, codename = host['platform'].to_array
    copy_dir_local = File.join(opts[:copy_base_local], variant)
    onhost_copy_base = opts[:copy_dir_external]

    case variant
    when /^(fedora|el|centos|sles)$/
      variant = ((variant == 'centos') ? 'el' : variant)
      release_file = "/repos/#{variant}/#{version}/#{opts[:puppet_collection]}/#{arch}/puppet-agent-*.rpm"
      download_file = "puppet-agent-#{variant}-#{version}-#{arch}.tar.gz"
    when /^(debian|ubuntu|cumulus)$/
      if arch == 'x86_64'
        arch = 'amd64'
      end
      version = version[0,2] + '.' + version[2,2] if (variant =~ /ubuntu/ && !version.include?("."))
      release_file = "/repos/apt/#{codename}/pool/#{opts[:puppet_collection]}/p/puppet-agent/puppet-agent*#{arch}.deb"
      download_file = "puppet-agent-#{variant}-#{version}-#{arch}.tar.gz"
    when /^windows$/
      is_config_32 = host['ruby_arch'] == 'x86' || host['install_32'] || opts['install_32']
      should_install_64bit = host.is_x86_64? && !is_config_32
      # only install 64bit builds if
      # - we do not have install_32 set on host
      # - we do not have install_32 set globally
      arch_suffix = should_install_64bit ? '64' : '86'
      release_path += "/windows"
      release_file = "/puppet-agent-x#{arch_suffix}.msi"
      download_file = "puppet-agent-x#{arch_suffix}.msi"
    when /^osx$/
      release_file = "/repos/apple/#{opts[:puppet_collection]}/puppet-agent-*"
      download_file = "puppet-agent-#{variant}-#{version}.tar.gz"
    when /^solaris$/
      if arch == 'x86_64'
        arch = 'i386'
      end
      release_file = "/repos/solaris/#{version}/#{opts[:puppet_collection]}/puppet-agent-*#{arch}.pkg.gz"
      download_file = "puppet-agent-#{varant}-#{version}-#{arch}.tar.gz"
    else
      raise "No pe-promoted installation step for #{variant} yet..."
    end

    onhost_copied_download = File.join(onhost_copy_base, download_file)
    onhost_copied_file = File.join(onhost_copy_base, release_file)
    fetch_http_file( release_path, download_file, copy_dir_local)
    scp_to host, File.join(copy_dir_local, download_file), onhost_copy_base

    case variant
    when /^(fedora-22)$/
      on host, "tar -zxvf #{onhost_copied_download} -C #{onhost_copy_base}"
      on host, "dnf --nogpgcheck localinstall -y #{onhost_copied_file}"
    when /^(fedora|el|centos)$/
      on host, "tar -zxvf #{onhost_copied_download} -C #{onhost_copy_base}"
      on host, "yum --nogpgcheck localinstall -y #{onhost_copied_file}"
    when /^(sles)$/
      on host, "tar -zxvf #{onhost_copied_download} -C #{onhost_copy_base}"
      on host, "rpm -ihv #{onhost_copied_file}"
    when /^(debian|ubuntu|cumulus)$/
      on host, "tar -zxvf #{onhost_copied_download} -C #{onhost_copy_base}"
      on host, "dpkg -i --force-all #{onhost_copied_file}"
      on host, "apt-get update"
    when /^windows$/
      result = on host, "echo #{onhost_copied_file}"
      onhost_copied_file = result.raw_output.chomp
      opts = { :debug => host[:pe_debug] || opts[:pe_debug] }
      install_msi_on(host, onhost_copied_file, {}, opts)
    when /^osx$/
      on host, "tar -zxvf #{onhost_copied_download} -C #{onhost_copy_base}"
      # move to better location
      on host, "mv #{onhost_copied_file}.dmg ."
      host.install_package("puppet-agent-*")
    end
    configure_type_defaults_on( host )
  end
end

#install_puppet_from_deb_on(hosts, opts) ⇒ Object Also known as: install_puppet_from_deb

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.

Installs Puppet and dependencies from deb on provided host(s).

Parameters:

  • hosts (Host, Array<Host>, String, Symbol)

    One or more hosts to act upon, or a role (String or Symbol) that identifies one or more hosts.

  • opts (Hash{Symbol=>String})

    An options hash

Options Hash (opts):

  • :version (String)

    The version of Puppet to install, if nil installs latest version

  • :facter_version (String)

    The version of Facter to install, if nil installs latest version

  • :hiera_version (String)

    The version of Hiera to install, if nil installs latest version

Returns:

  • nil



471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 471

def install_puppet_from_deb_on( hosts, opts )
  block_on hosts do |host|
    install_puppetlabs_release_repo(host)

    if opts[:facter_version]
      host.install_package("facter=#{opts[:facter_version]}-1puppetlabs1")
    end

    if opts[:hiera_version]
      host.install_package("hiera=#{opts[:hiera_version]}-1puppetlabs1")
    end

    if opts[:version]
      host.install_package("puppet-common=#{opts[:version]}-1puppetlabs1")
      host.install_package("puppet=#{opts[:version]}-1puppetlabs1")
    else
      host.install_package('puppet')
    end
    configure_type_defaults_on( host )
  end
end

#install_puppet_from_dmg_on(hosts, opts) ⇒ Object Also known as: install_puppet_from_dmg

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.

Installs Puppet and dependencies from dmg on provided host(s).

Parameters:

  • hosts (Host, Array<Host>, String, Symbol)

    One or more hosts to act upon, or a role (String or Symbol) that identifies one or more hosts.

  • opts (Hash{Symbol=>String})

    An options hash

Options Hash (opts):

  • :version (String)

    The version of Puppet to install

  • :puppet_version (String)

    The version of puppet-agent to install

  • :facter_version (String)

    The version of Facter to install

  • :hiera_version (String)

    The version of Hiera to install

  • :mac_download_url (String)

    Url to download msi pattern of %url%/puppet-%version%.msi

Returns:

  • nil



662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 662

def install_puppet_from_dmg_on( hosts, opts )
  block_on hosts do |host|
    # install puppet-agent if puppet version > 4.0 OR not puppet version is provided
    if (opts[:version] && !version_is_less(opts[:version], '4.0.0')) || !opts[:version]
      if opts[:puppet_agent_version].nil?
        raise "You must specify the version of puppet-agent you " +
              "want to install if you want to install Puppet 4.0 " +
              "or greater on OSX"
      end

      install_puppet_agent_from_dmg_on(host, opts)

    else
      puppet_ver = opts[:version] || 'latest'
      facter_ver = opts[:facter_version] || 'latest'
      hiera_ver = opts[:hiera_version] || 'latest'

      if [puppet_ver, facter_ver, hiera_ver].include?(nil)
        raise "You need to specify versions for OSX host\n eg. install_puppet({:version => '3.6.2',:facter_version => '2.1.0',:hiera_version  => '1.3.4',})"
      end

      on host, "curl -O #{opts[:mac_download_url]}/puppet-#{puppet_ver}.dmg"
      on host, "curl -O #{opts[:mac_download_url]}/facter-#{facter_ver}.dmg"
      on host, "curl -O #{opts[:mac_download_url]}/hiera-#{hiera_ver}.dmg"

      host.install_package("puppet-#{puppet_ver}")
      host.install_package("facter-#{facter_ver}")
      host.install_package("hiera-#{hiera_ver}")

      configure_type_defaults_on( host )
    end
  end
end

#install_puppet_from_freebsd_ports_on(hosts, opts) ⇒ Object Also known as: install_puppet_from_freebsd_ports

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.

Installs Puppet and dependencies from FreeBSD ports

Parameters:

  • hosts (Host, Array<Host>, String, Symbol)

    One or more hosts to act upon, or a role (String or Symbol) that identifies one or more hosts.

  • opts (Hash{Symbol=>String})

    An options hash

Options Hash (opts):

  • :version (String)

    The version of Puppet to install (shows warning)

Returns:

  • nil



633
634
635
636
637
638
639
640
641
642
643
644
645
646
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 633

def install_puppet_from_freebsd_ports_on( hosts, opts )
  if (opts[:version])
    logger.warn "If you wish to choose a specific Puppet version, use `install_puppet_from_gem_on('~> 3.*')`"
  end

  block_on hosts do |host|
    if host['platform'] =~ /freebsd-9/
      host.install_package("puppet")
    else
      host.install_package("sysutils/puppet")
    end
  end

end

#install_puppet_from_gem_on(hosts, opts) ⇒ Object Also known as: install_puppet_from_gem, install_puppet_agent_from_gem_on

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.

Installs Puppet and dependencies from gem on provided host(s)

Parameters:

  • hosts (Host, Array<Host>, String, Symbol)

    One or more hosts to act upon, or a role (String or Symbol) that identifies one or more hosts.

  • opts (Hash{Symbol=>String})

    An options hash

Options Hash (opts):

  • :version (String)

    The version of Puppet to install, if nil installs latest

  • :facter_version (String)

    The version of Facter to install, if nil installs latest

  • :hiera_version (String)

    The version of Hiera to install, if nil installs latest

Returns:

  • nil

Raises:

  • (StandardError)

    if gem does not exist on target host



764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 764

def install_puppet_from_gem_on( hosts, opts )
  block_on hosts do |host|
    # There are a lot of special things to do for Solaris and Solaris 10.
    # This is easier than checking host['platform'] every time.
    is_solaris10 = host['platform'] =~ /solaris-10/
    is_solaris = host['platform'] =~ /solaris/

    # Hosts may be provisioned with csw but pkgutil won't be in the
    # PATH by default to avoid changing the behavior for Puppet's tests
    if is_solaris10
      on host, 'ln -s /opt/csw/bin/pkgutil /usr/bin/pkgutil'
    end

    # Solaris doesn't necessarily have this, but gem needs it
    if is_solaris
      on host, 'mkdir -p /var/lib'
    end

    unless host.check_for_command( 'gem' )
      gempkg = case host['platform']
               when /solaris-11/                            then 'ruby-18'
               when /ubuntu-14/                             then 'ruby'
               when /solaris-10|ubuntu|debian|el-|cumulus/  then 'rubygems'
               when /openbsd/                               then 'ruby'
               else
                 raise "install_puppet() called with default_action " +
                       "'gem_install' but program `gem' is " +
                       "not installed on #{host.name}"
               end

      host.install_package gempkg
    end

    # Link 'gem' to /usr/bin instead of adding /opt/csw/bin to PATH.
    if is_solaris10
      on host, 'ln -s /opt/csw/bin/gem /usr/bin/gem'
    end

    if host['platform'] =~ /debian|ubuntu|solaris|cumulus/
      gem_env = YAML.load( on( host, 'gem environment' ).stdout )
      gem_paths_array = gem_env['RubyGems Environment'].find {|h| h['GEM PATHS'] != nil }['GEM PATHS']
      path_with_gem = 'export PATH=' + gem_paths_array.join(':') + ':${PATH}'
      on host, "echo '#{path_with_gem}' >> ~/.bashrc"
    end

    gemflags = '--no-ri --no-rdoc --no-format-executable'

    if opts[:facter_version]
      on host, "gem install facter -v'#{opts[:facter_version]}' #{gemflags}"
    end

    if opts[:hiera_version]
      on host, "gem install hiera -v'#{opts[:hiera_version]}' #{gemflags}"
    end

    ver_cmd = opts[:version] ? "-v '#{opts[:version]}'" : ''
    on host, "gem install puppet #{ver_cmd} #{gemflags}"

    # Similar to the treatment of 'gem' above.
    # This avoids adding /opt/csw/bin to PATH.
    if is_solaris
      gem_env = YAML.load( on( host, 'gem environment' ).stdout )
      # This is the section we want - this has the dir where gem executables go.
      env_sect = 'EXECUTABLE DIRECTORY'
      # Get the directory where 'gem' installs executables.
      # On Solaris 10 this is usually /opt/csw/bin
      gem_exec_dir = gem_env['RubyGems Environment'].find {|h| h[env_sect] != nil }[env_sect]

      on host, "ln -s #{gem_exec_dir}/hiera /usr/bin/hiera"
      on host, "ln -s #{gem_exec_dir}/facter /usr/bin/facter"
      on host, "ln -s #{gem_exec_dir}/puppet /usr/bin/puppet"
    end

    # A gem install might not necessarily create these
    ['confdir', 'logdir', 'codedir'].each do |key|
      host.mkdir_p host.puppet[key] if host.puppet.has_key?(key)
    end

    configure_type_defaults_on( host )
  end
end

#install_puppet_from_msi_on(hosts, opts) ⇒ Object Also known as: install_puppet_from_msi

Note:

on windows, the :ruby_arch host parameter can determine in addition

Installs Puppet and dependencies from msi on provided host(s).

to other settings whether the 32 or 64bit install is used

Parameters:

  • hosts (Host, Array<Host>, String, Symbol)

    One or more hosts to act upon, or a role (String or Symbol) that identifies one or more hosts.

  • opts (Hash{Symbol=>String})

    An options hash

Options Hash (opts):

  • :version (String)

    The version of Puppet to install

  • :puppet_agent_version (String)

    The version of the puppet-agent package to install, required if version is 4.0.0 or greater

  • :win_download_url (String)

    The url to download puppet from



506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 506

def install_puppet_from_msi_on( hosts, opts )
  block_on hosts do |host|
    version = opts[:version]

    if version && !version_is_less(version, '4.0.0')
      if opts[:puppet_agent_version].nil?
        raise "You must specify the version of puppet agent you " +
              "want to install if you want to install Puppet 4.0 " +
              "or greater on Windows"
      end

      opts[:version] = opts[:puppet_agent_version]
      install_puppet_agent_from_msi_on(host, opts)

    else
      compute_puppet_msi_name(host, opts)
      install_a_puppet_msi_on(host, opts)

    end
    configure_type_defaults_on( host )
  end
end

#install_puppet_from_openbsd_packages_on(hosts, opts) ⇒ 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.

Installs Puppet and dependencies from OpenBSD packages

Parameters:

  • hosts (Host, Array<Host>, String, Symbol)

    The host to install packages on

  • opts (Hash{Symbol=>String})

    An options hash

Options Hash (opts):

  • :version (String)

    The version of Puppet to install (shows warning)

Returns:

  • nil



740
741
742
743
744
745
746
747
748
749
750
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 740

def install_puppet_from_openbsd_packages_on(hosts, opts)
  if (opts[:version])
    logger.warn "If you wish to choose a specific Puppet version, use `install_puppet_from_gem_on('~> 3.*')`"
  end

  block_on hosts do |host|
    host.install_package('puppet')

    configure_type_defaults_on(host)
  end
end

#install_puppet_from_rpm_on(hosts, opts) ⇒ Object Also known as: install_puppet_from_rpm

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.

Installs Puppet and dependencies using rpm on provided host(s).

Parameters:

  • hosts (Host, Array<Host>, String, Symbol)

    One or more hosts to act upon, or a role (String or Symbol) that identifies one or more hosts.

  • opts (Hash{Symbol=>String})

    An options hash

Options Hash (opts):

  • :version (String)

    The version of Puppet to install, if nil installs latest version

  • :facter_version (String)

    The version of Facter to install, if nil installs latest version

  • :hiera_version (String)

    The version of Hiera to install, if nil installs latest version

  • :release (String)

    The major release of the OS

  • :family (String)

    The OS family (one of ‘el’ or ‘fedora’)

Returns:

  • nil



441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 441

def install_puppet_from_rpm_on( hosts, opts )
  block_on hosts do |host|
    install_puppetlabs_release_repo(host)

    if opts[:facter_version]
      host.install_package("facter-#{opts[:facter_version]}")
    end

    if opts[:hiera_version]
      host.install_package("hiera-#{opts[:hiera_version]}")
    end

    puppet_pkg = opts[:version] ? "puppet-#{opts[:version]}" : 'puppet'
    host.install_package("#{puppet_pkg}")
    configure_type_defaults_on( host )
  end
end

#install_puppet_on(hosts, opts = {}) ⇒ Object

Note:

This will attempt to add a repository for apt.puppetlabs.com on Debian, Ubuntu, or Cumulus machines, or yum.puppetlabs.com on EL or Fedora machines, then install the package ‘puppet’ or ‘puppet-agent’.

Install FOSS based on specified hosts using provided options

Examples:

will install puppet 3.6.1 from native puppetlabs provided packages wherever possible and will fail over to gem installation when impossible

install_puppet_on(hosts, {
  :version          => '3.6.1',
  :facter_version   => '2.0.1',
  :hiera_version    => '1.3.3',
  :default_action   => 'gem_install',
 })

will install puppet 4 from native puppetlabs provided puppet-agent 1.x package wherever possible and will fail over to gem installation when impossible

install_puppet({
  :version              => '4',
  :default_action       => 'gem_install'
})

will install puppet 4.1.0 from native puppetlabs provided puppet-agent 1.1.0 package wherever possible and will fail over to gem installation when impossible

install_puppet({
  :version              => '4.1.0',
  :puppet_agent_version => '1.1.0',
  :default_action       => 'gem_install'
})

Will install latest packages on Enterprise Linux and Debian based distros and fail hard on all othere platforms.

install_puppet_on(hosts)

Parameters:

  • hosts (Host, Array<Host>, String, Symbol)

    One or more hosts to act upon, or a role (String or Symbol) that identifies one or more hosts.

  • opts (Hash{Symbol=>String}) (defaults to: {})

Options Hash (opts):

  • :version (String)

    Version of puppet to download

  • :puppet_agent_version (String)

    Version of puppet agent to download

  • :mac_download_url (String)

    Url to download msi pattern of %url%/puppet-%version%.msi

  • :win_download_url (String)

    Url to download dmg pattern of %url%/(puppet|hiera|facter)-%version%.msi

Returns:

  • nil

Raises:

  • (StandardError)

    When encountering an unsupported platform by default, or if gem cannot be found when default_action => ‘gem_install’

  • (FailTest)

    When error occurs during the actual installation process



252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 252

def install_puppet_on(hosts, opts={})
  opts = FOSS_DEFAULT_DOWNLOAD_URLS.merge(opts)

  # If version isn't specified assume the latest in the 3.x series
  if opts[:version] and not version_is_less(opts[:version], '4.0.0')
    # backwards compatability
    opts[:puppet_agent_version] ||= opts[:version]
    install_puppet_agent_on(hosts, opts)

  else
    block_on hosts do |host|
      if host['platform'] =~ /el-(5|6|7)/
        relver = $1
        install_puppet_from_rpm_on(host, opts.merge(:release => relver, :family => 'el'))
      elsif host['platform'] =~ /fedora-(\d+)/
        relver = $1
        install_puppet_from_rpm_on(host, opts.merge(:release => relver, :family => 'fedora'))
      elsif host['platform'] =~ /(ubuntu|debian|cumulus)/
        install_puppet_from_deb_on(host, opts)
      elsif host['platform'] =~ /windows/
        relver = opts[:version]
        install_puppet_from_msi_on(host, opts)
      elsif host['platform'] =~ /osx/
        install_puppet_from_dmg_on(host, opts)
      elsif host['platform'] =~ /openbsd/
        install_puppet_from_openbsd_packages_on(host, opts)
      elsif host['platform'] =~ /freebsd/
        install_puppet_from_freebsd_ports_on(host, opts)
      else
        if opts[:default_action] == 'gem_install'
          opts[:version] ||= '~> 3.x'
          install_puppet_from_gem_on(host, opts)
        else
          raise "install_puppet() called for unsupported platform '#{host['platform']}' on '#{host.name}'"
        end
      end

      host[:version] = opts[:version]

      # Certain install paths may not create the config dirs/files needed
      host.mkdir_p host['puppetpath'] unless host[:type] =~ /aio/
      on host, "echo '' >> #{host.puppet['hiera_config']}"
    end
  end

  nil
end

#install_puppetlabs_dev_repo(host, package_name, build_version, repo_configs_dir = 'tmp/repo_configs', opts = options) ⇒ Object

Note:

This method only works on redhat-like and debian-like hosts.

Install development repository on the given host. This method pushes all repository information including package files for the specified package_name to the host and modifies the repository configuration file to point at the new repository. This is particularly useful for installing development packages on hosts that can’t access the builds server.

Parameters:

  • host (Host)

    An object implementing Hosts‘s interface.

  • package_name (String)

    The name of the package whose repository is being installed.

  • build_version (String)

    A string identifying the output of a packaging job for use in looking up repository directory information

  • repo_configs_dir (String) (defaults to: 'tmp/repo_configs')

    A local directory where repository files will be stored as an intermediate step before pushing them to the given host.

  • opts (Hash{Symbol=>String}) (defaults to: options)

    Options to alter execution.

Options Hash (opts):

  • :dev_builds_url (String)

    The URL to look for dev builds.

  • :dev_builds_repos (String, Array<String>)

    The repo(s) to check for dev builds in.



909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 909

def install_puppetlabs_dev_repo ( host, package_name, build_version,
                          repo_configs_dir = 'tmp/repo_configs',
                          opts = options )
  variant, version, arch, codename = host['platform'].to_array
  platform_configs_dir = File.join(repo_configs_dir, variant)
  opts = FOSS_DEFAULT_DOWNLOAD_URLS.merge(opts)

  # some of the uses of dev_builds_url below can't include protocol info,
  # plus this opens up possibility of switching the behavior on provided
  # url type
  _, protocol, hostname = opts[:dev_builds_url].partition /.*:\/\//
  dev_builds_url = protocol + hostname

  on host, "mkdir -p /root/#{package_name}"

  case variant
  when /^(fedora|el|centos)$/
    variant = (($1 == 'centos') ? 'el' : $1)
    fedora_prefix = ((variant == 'fedora') ? 'f' : '')

    if host.is_pe?
      pattern = "pl-%s-%s-repos-pe-%s-%s%s-%s.repo"
    else
      pattern = "pl-%s-%s-%s-%s%s-%s.repo"
    end

    repo_filename = pattern % [
      package_name,
      build_version,
      variant,
      fedora_prefix,
      version,
      arch
    ]

    repo = fetch_http_file( "%s/%s/%s/repo_configs/rpm/" %
                 [ dev_builds_url, package_name, build_version ],
                  repo_filename,
                  platform_configs_dir)

    link = nil
    package_repos = opts[:dev_builds_repos].nil? ? [] : [opts[:dev_builds_repos]]
    package_repos.push(['products', 'devel']).flatten!
    package_repos.each do |repo|
      link =  "%s/%s/%s/repos/%s/%s%s/%s/%s/" %
        [ dev_builds_url, package_name, build_version, variant,
          fedora_prefix, version, repo, arch ]

      unless link_exists?( link )
        logger.debug("couldn't find link at '#{repo}', falling back to next option...")
      else
        logger.debug("found link at '#{repo}'")
        break
      end
    end
    raise "Unable to reach a repo directory at #{link}" unless link_exists?( link )

    repo_dir = fetch_http_dir( link, platform_configs_dir )

    config_dir = '/etc/yum.repos.d/'
    scp_to host, repo, config_dir
    scp_to host, repo_dir, "/root/#{package_name}"

    search = "baseurl\\s*=\\s*http:\\/\\/#{hostname}.*$"
    replace = "baseurl=file:\\/\\/\\/root\\/#{package_name}\\/#{arch}"
    sed_command = "sed -i 's/#{search}/#{replace}/'"
    find_and_sed = "find #{config_dir} -name \"*.repo\" -exec #{sed_command} {} \\;"

    on host, find_and_sed

  when /^(debian|ubuntu|cumulus)$/
    list = fetch_http_file( "%s/%s/%s/repo_configs/deb/" %
                   [ dev_builds_url, package_name, build_version ],
                  "pl-%s-%s-%s.list" %
                   [ package_name, build_version, codename ],
                  platform_configs_dir )

    repo_dir = fetch_http_dir( "%s/%s/%s/repos/apt/%s" %
                                [ dev_builds_url, package_name,
                                  build_version, codename ],
                                 platform_configs_dir )

    config_dir = '/etc/apt/sources.list.d'
    scp_to host, list, config_dir
    scp_to host, repo_dir, "/root/#{package_name}"

    repo_name = nil
    package_repos = opts[:dev_builds_repos].nil? ? [] : [opts[:dev_builds_repos]]
    package_repos.flatten!
    package_repos.each do |repo|
      repo_path = "/root/#{package_name}/#{codename}/#{repo}"
      repo_check = on(host, "[[ -d #{repo_path} ]]", :acceptable_exit_codes => [0,1])
      if repo_check.exit_code == 0
        logger.debug("found repo at '#{repo_path}'")
        repo_name = repo
        break
      else
        logger.debug("couldn't find repo at '#{repo_path}', falling back to next option...")
      end
    end
    if repo_name.nil?
      repo_name = 'main'
      logger.debug("using default repo '#{repo_name}'")
    end

    search = "deb\\s\\+http:\\/\\/#{hostname}.*$"
    replace = "deb file:\\/\\/\\/root\\/#{package_name}\\/#{codename} #{codename} #{repo_name}"
    sed_command = "sed -i 's/#{search}/#{replace}/'"
    find_and_sed = "find #{config_dir} -name \"*.list\" -exec #{sed_command} {} \\;"

    on host, find_and_sed
    on host, "apt-get update"
    configure_type_defaults_on( host )

  else
    raise "No repository installation step for #{variant} yet..."
  end
end

#install_puppetlabs_release_repo_on(hosts, repo = nil, opts = options) ⇒ Object Also known as: install_puppetlabs_release_repo

Note:

This method only works on redhat-like and debian-like hosts.

Install official puppetlabs release repository configuration on host(s).

Parameters:

  • hosts (Host, Array<Host>, String, Symbol)

    One or more hosts to act upon, or a role (String or Symbol) that identifies one or more hosts.



855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 855

def install_puppetlabs_release_repo_on( hosts, repo = nil, opts = options )
  block_on hosts do |host|
    variant, version, arch, codename = host['platform'].to_array
    repo_name = repo.nil? ? '' : '-' + repo
    opts = FOSS_DEFAULT_DOWNLOAD_URLS.merge(opts)

    case variant
    when /^(fedora|el|centos)$/
      variant = (($1 == 'centos') ? 'el' : $1)
      remote = "%s/puppetlabs-release%s-%s-%s.noarch.rpm" % [opts[:release_yum_repo_url],
                                                 repo_name, variant, version]

	      host.install_package_with_rpm(remote, '--replacepkgs', {:package_proxy => opts[:package_proxy]})

    when /^(debian|ubuntu|cumulus)$/
      deb = "puppetlabs-release%s-%s.deb" % [repo_name, codename]

      remote = URI.join( opts[:release_apt_repo_url], deb )

      on host, "wget -O /tmp/puppet.deb #{remote}"
      on host, "dpkg -i --force-all /tmp/puppet.deb"
      on host, "apt-get update"
    else
      raise "No repository installation step for #{variant} yet..."
    end
    configure_type_defaults_on( host )
  end
end

#remove_puppet_on(hosts) ⇒ Object

Ensures Puppet and dependencies are no longer installed on host(s).

Parameters:

  • hosts (Host, Array<Host>, String, Symbol)

    One or more hosts to act upon, or a role (String or Symbol) that identifies one or more hosts.

Returns:

  • nil



1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
# File 'lib/beaker/dsl/install_utils/foss_utils.rb', line 1403

def remove_puppet_on( hosts )
  block_on hosts do |host|
    cmdline_args = ''
    # query packages
    case host[:platform]
    when /cumulus/
      pkgs = on(host, "dpkg-query -l  | awk '{print $2}' | grep -E '(^pe-|puppet)'", :acceptable_exit_codes => [0,1]).stdout.chomp.split(/\n+/)
    when /aix/
      pkgs = on(host, "rpm -qa  | grep -E '(^pe-|puppet)'", :acceptable_exit_codes => [0,1]).stdout.chomp.split(/\n+/)
    when /solaris-10/
      cmdline_args = '-a noask'
      pkgs = on(host, "pkginfo | egrep '(^pe-|puppet)' | cut -f2 -d ' '", :acceptable_exit_codes => [0,1]).stdout.chomp.split(/\n+/)
    when /solaris-11/
      pkgs = on(host, "pkg list | egrep '(^pe-|puppet)' | awk '{print $1}'", :acceptable_exit_codes => [0,1]).stdout.chomp.split(/\n+/)
    else
      raise "remove_puppet_on() called for unsupported " +
            "platform '#{host['platform']}' on '#{host.name}'"
    end

    # uninstall packages
    host.uninstall_package(pkgs.join(' '), cmdline_args) if pkgs.length > 0

    if host[:platform] =~ /solaris-11/ then
      # FIXME: This leaves things in a state where Puppet Enterprise (3.x) cannot be cleanly installed
      #        but is required to put things in a state that puppet-agent can be installed
      # extra magic for expunging left over publisher
      publishers = ['puppetlabs.com', 'com.puppetlabs']
      publishers.each do |publisher|
        if on(host, "pkg publisher #{publisher}", :acceptable_exit_codes => [0,1]).exit_code == 0 then
          # First, try to remove the publisher altogether
          if on(host, "pkg unset-publisher #{publisher}", :acceptable_exit_codes => [0,1]).exit_code == 1 then
            # If that doesn't work, we're in a non-global zone and the
            # publisher is from a global zone. As such, just remove any
            # references to the non-global zone uri.
            on(host, "pkg set-publisher -G '*' #{publisher}", :acceptable_exit_codes => [0,1])
          end
        end
      end
    end

    # delete any residual files
    on(host, 'find / -name "*puppet*" -print | xargs rm -rf')

  end
end