mixlib-install 3.8.0 → 3.9.0
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/.expeditor/config.yml +2 -2
- data/.github/CODEOWNERS +1 -1
- data/CHANGELOG.md +7 -2
- data/VERSION +1 -1
- data/lib/mixlib/install/generator/bourne/scripts/platform_detection.sh +5 -1
- 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: 18efadcbfa302f61d57f2c5870d63f32f909a1d3
|
|
4
|
+
data.tar.gz: 47dec1565125b8b1bc7def1a250d33573df8140d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cc9adf6054dbe1755131566760e75b96798fe0dc0b5658dae4a18558d416c456567147af714cfaad0ee3003330ce0aa6e12d824eab147040d22ea64cf1c824cf
|
|
7
|
+
data.tar.gz: 07a84bef936628ccb7eb1fd0c52f3ca6bffa4b98bbf33b25fca3363ebce19578081049c5afc235914dc5d7c8b937df9ce78d5308ea764b7aa6ebf038bce6172d
|
data/.expeditor/config.yml
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
slack:
|
|
2
|
-
notify_channel:
|
|
2
|
+
notify_channel: jex-notify
|
|
3
3
|
|
|
4
4
|
github:
|
|
5
|
-
maintainer_group: chef/
|
|
5
|
+
maintainer_group: chef/package-distribution-maintainers
|
|
6
6
|
version_tag_format: v{{version}}
|
|
7
7
|
minor_bump_labels:
|
|
8
8
|
- "Version: Bump Minor"
|
data/.github/CODEOWNERS
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
# Mixlib::Install Changes
|
|
2
2
|
|
|
3
|
-
<!-- latest_release 3.
|
|
3
|
+
<!-- latest_release 3.9.0 -->
|
|
4
|
+
## [v3.9.0](https://github.com/chef/mixlib-install/tree/v3.9.0) (2017-12-20)
|
|
5
|
+
|
|
6
|
+
#### Merged Pull Requests
|
|
7
|
+
- add amazon linux 2.0 platform detection support [#246](https://github.com/chef/mixlib-install/pull/246) ([wrightp](https://github.com/wrightp))
|
|
8
|
+
<!-- latest_release -->
|
|
9
|
+
|
|
4
10
|
## [v3.8.0](https://github.com/chef/mixlib-install/tree/v3.8.0) (2017-10-31)
|
|
5
11
|
|
|
6
12
|
#### Merged Pull Requests
|
|
7
13
|
- Add support for aarch64 [#244](https://github.com/chef/mixlib-install/pull/244) ([jeremiahsnapp](https://github.com/jeremiahsnapp))
|
|
8
|
-
<!-- latest_release -->
|
|
9
14
|
|
|
10
15
|
## [v3.7.0](https://github.com/chef/mixlib-install/tree/v3.7.0) (2017-10-11)
|
|
11
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.
|
|
1
|
+
3.9.0
|
|
@@ -67,10 +67,14 @@ elif test -f "/etc/system-release"; then
|
|
|
67
67
|
platform=`sed 's/^\(.\+\) release.\+/\1/' /etc/system-release | tr '[A-Z]' '[a-z]'`
|
|
68
68
|
platform_version=`sed 's/^.\+ release \([.0-9]\+\).*/\1/' /etc/system-release | tr '[A-Z]' '[a-z]'`
|
|
69
69
|
# amazon is built off of fedora, so act like RHEL
|
|
70
|
+
# Version 1. Example: Amazon Linux AMI release 2017.09
|
|
70
71
|
if test "$platform" = "amazon linux ami"; then
|
|
71
|
-
# FIXME: remove client side platform_version mangling and hard coded yolo, and remapping to deprecated "el"
|
|
72
72
|
platform="el"
|
|
73
73
|
platform_version="6.0"
|
|
74
|
+
# Version 2. Example: Amazon Linux release 2.0 (2017.12)
|
|
75
|
+
elif test "$platform" = "amazon linux"; then
|
|
76
|
+
platform="el"
|
|
77
|
+
platform_version="7.0"
|
|
74
78
|
fi
|
|
75
79
|
# Apple OS X
|
|
76
80
|
elif test -f "/usr/bin/sw_vers"; then
|
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: 3.
|
|
4
|
+
version: 3.9.0
|
|
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: 2017-
|
|
12
|
+
date: 2017-12-20 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: mixlib-shellout
|