mixlib-install 0.8.0.alpha.5 → 0.8.0.alpha.6
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/PRODUCT_MATRIX.md +2 -0
- data/lib/mixlib/install/options.rb +9 -1
- data/lib/mixlib/install/product.rb +10 -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: f22a8e79813d704d0b3421bd3057cc3b0110445e
|
|
4
|
+
data.tar.gz: 6195a3c3439c78bda91e893ce1a88450fb4871c8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e32d45a986ad03ca28ba567a53617f4bf4f5cdfa18341248280f3389d03345d1f26281aa69ff0a7d1a96fb1670a18708a6cd1188653d96c75b33d7b8164824a0
|
|
7
|
+
data.tar.gz: 7fbf709b33d82dad251178f0be3698a65c47737ced36c2c2b1be1833bdffee06bdcea6ff74ecf940dea2fb552a9e9b2bb71a8e7c360bbd3e50206de430ce5c5c
|
data/PRODUCT_MATRIX.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
| Product | Product Key |
|
|
2
2
|
| ------- | ------------ |
|
|
3
3
|
| Analytics Platform | analytics |
|
|
4
|
+
| Angry Omnibus Toolchain | angry-omnibus-toolchain |
|
|
5
|
+
| Angry Chef Client | angrychef |
|
|
4
6
|
| Chef Client | chef |
|
|
5
7
|
| Chef Backend | chef-backend |
|
|
6
8
|
| Chef Server High Availability addon | chef-ha |
|
|
@@ -30,7 +30,15 @@ module Mixlib
|
|
|
30
30
|
OMNITRUCK_CHANNELS = [:stable, :current]
|
|
31
31
|
ARTIFACTORY_CHANNELS = [:unstable]
|
|
32
32
|
ALL_SUPPORTED_CHANNELS = OMNITRUCK_CHANNELS + ARTIFACTORY_CHANNELS
|
|
33
|
-
SUPPORTED_PRODUCT_NAMES = %w[
|
|
33
|
+
SUPPORTED_PRODUCT_NAMES = %w[
|
|
34
|
+
angry-omnibus-toolchain
|
|
35
|
+
angrychef
|
|
36
|
+
chef
|
|
37
|
+
chefdk
|
|
38
|
+
delivery-cli
|
|
39
|
+
omnibus-toolchain
|
|
40
|
+
push-jobs-client
|
|
41
|
+
]
|
|
34
42
|
SUPPORTED_SHELL_TYPES = [:ps1, :sh]
|
|
35
43
|
SUPPORTED_OPTIONS = [
|
|
36
44
|
:architecture,
|
|
@@ -150,6 +150,16 @@ PRODUCT_MATRIX = Mixlib::Install::ProductMatrix.new do
|
|
|
150
150
|
config_file "/etc/opscode-analytics/opscode-analytics.rb"
|
|
151
151
|
end
|
|
152
152
|
|
|
153
|
+
product "angry-omnibus-toolchain" do
|
|
154
|
+
product_name "Angry Omnibus Toolchain"
|
|
155
|
+
package_name "angry-omnibus-toolchain"
|
|
156
|
+
end
|
|
157
|
+
|
|
158
|
+
product "angrychef" do
|
|
159
|
+
product_name "Angry Chef Client"
|
|
160
|
+
package_name "angrychef"
|
|
161
|
+
end
|
|
162
|
+
|
|
153
163
|
product "chef" do
|
|
154
164
|
product_name "Chef Client"
|
|
155
165
|
package_name "chef"
|
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: 0.8.0.alpha.
|
|
4
|
+
version: 0.8.0.alpha.6
|
|
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-02-
|
|
12
|
+
date: 2016-02-03 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: artifactory
|