mixlib-install 2.0.2 → 2.0.3
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 +4 -4
- data/CHANGELOG.md +3 -0
- data/PRODUCT_MATRIX.md +1 -0
- data/lib/mixlib/install/generator/bourne.rb +1 -8
- data/lib/mixlib/install/generator/powershell.rb +1 -8
- data/lib/mixlib/install/product.rb +5 -0
- data/lib/mixlib/install/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7929d1cc91a8524f883dcb8b1bfab5b2172b4bb3
|
|
4
|
+
data.tar.gz: b9f9e0442984900dde13142e393b78a9e2751c76
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3515ad67a51e57f7dd96e9fb22ca37b62b342dd21a0a0364926858b175472d1c29d9e92d035f46ede72cb5afc53b5813cf2444f40caa81e1a8d398367f7c715c
|
|
7
|
+
data.tar.gz: a6595942db9137fbd265226cc584c53d9d79a051f90b569d969565e74ec592a9bc53ee2a44ca192e62970cd4a1826aa0fdb70cb98d6728d320ac9a5f2b6c4ce5
|
data/CHANGELOG.md
CHANGED
data/PRODUCT_MATRIX.md
CHANGED
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
| Chef Compliance | compliance |
|
|
13
13
|
| Delivery | delivery |
|
|
14
14
|
| Chef Server High Availability addon | ha |
|
|
15
|
+
| Harmony - Omnibus Integration Internal Test Project | harmony |
|
|
15
16
|
| InSpec | inspec |
|
|
16
17
|
| Management Console | manage |
|
|
17
18
|
| Chef Cloud Marketplace addon | marketplace |
|
|
@@ -45,14 +45,7 @@ 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
|
-
|
|
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
|
|
48
|
+
install_command << get_script("fetch_metadata.sh")
|
|
56
49
|
install_command << get_script("fetch_package.sh")
|
|
57
50
|
install_command << get_script("install_package.sh")
|
|
58
51
|
|
|
@@ -46,14 +46,7 @@ module Mixlib
|
|
|
46
46
|
def install_command
|
|
47
47
|
install_project_module = []
|
|
48
48
|
install_project_module << get_script("helpers.ps1")
|
|
49
|
-
|
|
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
|
|
49
|
+
install_project_module << get_script("get_project_metadata.ps1")
|
|
57
50
|
install_project_module << get_script("install_project.ps1")
|
|
58
51
|
install_command = []
|
|
59
52
|
install_command << ps1_modularize(install_project_module.join("\n"), "Omnitruck")
|
|
@@ -250,6 +250,11 @@ PRODUCT_MATRIX = Mixlib::Install::ProductMatrix.new do
|
|
|
250
250
|
config_file "/etc/opscode/chef-server.rb"
|
|
251
251
|
end
|
|
252
252
|
|
|
253
|
+
product "harmony" do
|
|
254
|
+
product_name "Harmony - Omnibus Integration Internal Test Project"
|
|
255
|
+
package_name "harmony"
|
|
256
|
+
end
|
|
257
|
+
|
|
253
258
|
product "inspec" do
|
|
254
259
|
product_name "InSpec"
|
|
255
260
|
package_name "inspec"
|
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.
|
|
4
|
+
version: 2.0.3
|
|
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-
|
|
12
|
+
date: 2016-10-03 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: artifactory
|