mixlib-install 2.0.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d396bf37f1b50052a6d6550a76dd2e830466f42b
4
- data.tar.gz: c5ebe8fe43866d0dc9cdf737b3786b355eed9da3
3
+ metadata.gz: 6521f3678f0d1b61776fd15ed97211bb9a218ba4
4
+ data.tar.gz: ff8d551119e27d84087e4b69c129a0aab47bfff5
5
5
  SHA512:
6
- metadata.gz: ea784db481d70828c8d176717453c28837631c265c9bb4227c922bc53ede996c0a8391b9badf2bc508d52da20fa3f91dcf2136af97f1ee5cc4239b0c9e932a2b
7
- data.tar.gz: 421e125545c088dec5c7b63f572180046422c87a60c6cabe0ac82dd9c81e19be0a888292c6857f1a25864dbc2f1ee115eff5696e716e39ef707ee157e82ec8d7
6
+ metadata.gz: 0e897cdb1dd20f149d2c6949a8df21b974baea1baf837cc76ed540530c11d199dbaf22998b05a3b7ed5da58799a32fa584ecb3dd08db5e4ac7a8454f79a6d84e
7
+ data.tar.gz: 9c8c72d0d7fa09dea9e64ff6524758af09fd41238080b8afcf7f190ee0c4eaf1af973754b5ba72c4232bdf5354872a1eac54e58ca3c58974836fbfa583459f22
@@ -21,15 +21,7 @@ before_script:
21
21
  - export PATH="$PWD/bin:$PATH"
22
22
 
23
23
  script:
24
- # run unit tests
25
- - /opt/chefdk/embedded/bin/bundle install && /opt/chefdk/bin/chef exec rake
26
- # setup acceptance tests
27
- - cd acceptance && export BUNDLE_GEMFILE=$PWD/Gemfile && /opt/chefdk/embedded/bin/bundle install && export APPBUNDLER_ALLOW_RVM=true
28
- # run acceptances tests and force cleanup
29
- # only testing bourne until issues with powershell suite resovled:
30
- # 1) inspec not finding chef package once connected (not reproducible locally)
31
- # 2) currently no way to mask password (sensitive true) AND know what the error is if inspec fails
32
- - /opt/chefdk/embedded/bin/bundle exec chef-acceptance test bourne --force-destroy
24
+ - ci/script.sh
33
25
 
34
26
  env:
35
27
  global:
@@ -1,5 +1,8 @@
1
1
  # Change Log
2
2
 
3
+ ## [2.0.1]
4
+ - Fix install.sh and install.ps1 scripts to install unstable packages
5
+
3
6
  ## [2.0.0]
4
7
  - Replaced all backends with PackageRouter
5
8
  - All channels are now available using the single backend
data/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ [![Build Status](https://travis-ci.org/chef/mixlib-install.svg?branch=master)](https://travis-ci.org/chef/mixlib-install)
2
+
1
3
  # Mixlib::Install
2
4
 
3
5
  ## Usage
@@ -19,13 +19,17 @@ do
19
19
  unset $ruby_env_var
20
20
  done
21
21
 
22
- # download terraform
23
- wget "https://releases.hashicorp.com/terraform/0.7.4/terraform_0.7.4_linux_amd64.zip"
22
+ # Don't run acceptance tests on forks. The decryption keys are not available.
23
+ if [ "${TRAVIS_REPO_SLUG}" = "chef/mixlib-install" ]; then
24
24
 
25
- # inflate archive
26
- unzip terraform_0.7.4_linux_amd64.zip -d bin
25
+ # download terraform
26
+ wget "https://releases.hashicorp.com/terraform/0.7.4/terraform_0.7.4_linux_amd64.zip"
27
27
 
28
- # decrypt pem
29
- openssl aes-256-cbc -K $encrypted_e2edbb28e76c_key -iv $encrypted_e2edbb28e76c_iv -in ci/es-infrastructure.pem.enc -out es-infrastructure.pem -d
30
- mkdir -p ~/.ssh
31
- mv es-infrastructure.pem ~/.ssh
28
+ # inflate archive
29
+ unzip terraform_0.7.4_linux_amd64.zip -d bin
30
+
31
+ # decrypt pem
32
+ openssl aes-256-cbc -K $encrypted_e2edbb28e76c_key -iv $encrypted_e2edbb28e76c_iv -in ci/es-infrastructure.pem.enc -out es-infrastructure.pem -d
33
+ mkdir -p ~/.ssh
34
+ mv es-infrastructure.pem ~/.ssh
35
+ fi
@@ -0,0 +1,17 @@
1
+ #!/bin/bash
2
+
3
+ set -evx
4
+
5
+ # run unit tests
6
+ /opt/chefdk/embedded/bin/bundle install && /opt/chefdk/bin/chef exec rake
7
+
8
+ # Don't run acceptance tests on forks. The decryption keys are not available.
9
+ if [ "${TRAVIS_REPO_SLUG}" = "chef/mixlib-install" ]; then
10
+ # setup acceptance tests
11
+ cd acceptance && export BUNDLE_GEMFILE=$PWD/Gemfile && /opt/chefdk/embedded/bin/bundle install && export APPBUNDLER_ALLOW_RVM=true
12
+ # run acceptances tests and force cleanup
13
+ # only testing bourne until issues with powershell suite resovled:
14
+ # 1) inspec not finding chef package once connected (not reproducible locally)
15
+ # 2) currently no way to mask password (sensitive true) AND know what the error is if inspec fails
16
+ /opt/chefdk/embedded/bin/bundle exec chef-acceptance test bourne --force-destroy
17
+ fi
@@ -45,8 +45,14 @@ module Mixlib
45
45
  install_command << get_script("helpers.sh")
46
46
  install_command << render_variables
47
47
  install_command << get_script("platform_detection.sh")
48
- install_command << get_script("fetch_metadata.sh")
49
- install_command << get_script("fetch_package.sh")
48
+ # TODO: Remove this condition check once the PackageRouter changes for
49
+ # omnitruck are delivered to production! For now, we will allow
50
+ # unstable channel requests to omnitruck to use the acceptance environment.
51
+ if options.channel == :unstable
52
+ install_command << get_script("fetch_metadata.sh", base_url: "https://omnitruck-acceptance.chef.io/")
53
+ else
54
+ install_command << get_script("fetch_metadata.sh")
55
+ end
50
56
  install_command << get_script("install_package.sh")
51
57
 
52
58
  install_command.join("\n\n")
@@ -46,9 +46,15 @@ module Mixlib
46
46
  def install_command
47
47
  install_project_module = []
48
48
  install_project_module << get_script("helpers.ps1")
49
- install_project_module << get_script("get_project_metadata.ps1")
49
+ # TODO: Remove this condition check once the PackageRouter changes for
50
+ # omnitruck are delivered to production! For now, we will allow
51
+ # unstable channel requests to omnitruck to use the acceptance environment.
52
+ if options.channel == :unstable
53
+ install_project_module << get_script("get_project_metadata.ps1", base_url: "https://omnitruck-acceptance.chef.io/")
54
+ else
55
+ install_project_module << get_script("get_project_metadata.ps1")
56
+ end
50
57
  install_project_module << get_script("install_project.ps1")
51
-
52
58
  install_command = []
53
59
  install_command << ps1_modularize(install_project_module.join("\n"), "Omnitruck")
54
60
  install_command << render_command
@@ -1,5 +1,5 @@
1
1
  module Mixlib
2
2
  class Install
3
- VERSION = "2.0.0"
3
+ VERSION = "2.0.1"
4
4
  end
5
5
  end
@@ -102,7 +102,7 @@ Function Install-ChefAppx($appx, $chef_omnibus_root) {
102
102
  return $true
103
103
  }
104
104
 
105
- Function Log($m) { Write-Host " $m`n" }
105
+ Function Log($m) { Write-Host " $m" }
106
106
 
107
107
  function Get-WebContent {
108
108
  param ($uri, $filepath)
@@ -178,7 +178,7 @@ Function Unresolve-Path($p) {
178
178
  $chef_omnibus_root = Unresolve-Path $chef_omnibus_root
179
179
 
180
180
  if (Check-UpdateChef $chef_omnibus_root $version) {
181
- Write-Host "-----> Installing Chef Omnibus ($pretty_version)`n"
181
+ Write-Host "-----> Installing Chef Omnibus ($pretty_version)"
182
182
  if ($chef_metadata_url -ne $null) {
183
183
  $url, $sha256 = Get-ChefMetadata "$chef_metadata_url"
184
184
  } else {
@@ -190,5 +190,5 @@ if (Check-UpdateChef $chef_omnibus_root $version) {
190
190
  Download-Chef "$url" $sha256 $msi
191
191
  Install-Chef $msi $chef_omnibus_root
192
192
  } else {
193
- Write-Host "-----> Chef Omnibus installation detected ($pretty_version)`n"
193
+ Write-Host "-----> Chef Omnibus installation detected ($pretty_version)"
194
194
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mixlib-install
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thom May
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-09-22 00:00:00.000000000 Z
12
+ date: 2016-09-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: artifactory
@@ -221,6 +221,7 @@ files:
221
221
  - acceptance/powershell/terraform/variables.tf
222
222
  - ci/before-script.sh
223
223
  - ci/es-infrastructure.pem.enc
224
+ - ci/script.sh
224
225
  - lib/mixlib/install.rb
225
226
  - lib/mixlib/install/artifact_info.rb
226
227
  - lib/mixlib/install/backend.rb