mixlib-install 3.12.28 → 3.12.29
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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 92e948dd67aaf9f9ac49530be49484aa599747fa591c9ac8dfed7e51f8d3e696
|
|
4
|
+
data.tar.gz: a4096ef9b71a04a2346ec43ab78a24b0abe6d2d5f6e4f987fc620bc2a135647e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ee8131db16c5faeba9e3557e6bf2a7bcbcb96f11378beb4164eb7f4d654a99a7f3cf1e36f746d3e42507560c2e4b881a5f7a51c7fd80658e83b47f25bbf9ec04
|
|
7
|
+
data.tar.gz: 84d046f4ba71a20a6ee9fbc6f0e125bce5fc1c03735884c75dbe6ac00868f422aac1530071747cea0e4c9ac7c851f5a1cec0faecbb0d09c59704d486d8aa5aae
|
|
@@ -68,20 +68,25 @@ elif test -f "/etc/system-release"; then
|
|
|
68
68
|
. /etc/os-release
|
|
69
69
|
platform_version=$VERSION_ID
|
|
70
70
|
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
71
|
+
case $platform_version in
|
|
72
|
+
"2022"|"2023")
|
|
73
|
+
platform="amazon"
|
|
74
|
+
platform_version=$platform_version
|
|
75
|
+
;;
|
|
76
|
+
"2")
|
|
77
|
+
platform="el"
|
|
78
|
+
platform_version="7"
|
|
79
|
+
;;
|
|
80
|
+
"*")
|
|
81
|
+
platform="el"
|
|
82
|
+
|
|
83
|
+
# VERSION_ID will match YYYY.MM for Amazon Linux AMIs
|
|
84
|
+
platform_version="6"
|
|
85
|
+
;;
|
|
86
|
+
esac
|
|
83
87
|
esac
|
|
84
88
|
|
|
89
|
+
|
|
85
90
|
# Apple macOS
|
|
86
91
|
elif test -f "/usr/bin/sw_vers"; then
|
|
87
92
|
platform="mac_os_x"
|
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.12.
|
|
4
|
+
version: 3.12.29
|
|
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:
|
|
12
|
+
date: 2024-01-09 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: mixlib-shellout
|