mixlib-install 3.12.27 → 3.12.29
Sign up to get free protection for your applications and to get access to all the features.
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
|
@@ -46,8 +46,14 @@ elif test -f "/etc/Eos-release"; then
|
|
46
46
|
elif test -f "/etc/redhat-release"; then
|
47
47
|
platform=`sed 's/^\(.\+\) release.*/\1/' /etc/redhat-release | tr '[A-Z]' '[a-z]'`
|
48
48
|
platform_version=`sed 's/^.\+ release \([.0-9]\+\).*/\1/' /etc/redhat-release`
|
49
|
-
|
50
|
-
if test "$platform" = "
|
49
|
+
|
50
|
+
if test "$platform" = "rocky linux"; then
|
51
|
+
source /etc/os-release
|
52
|
+
os="${REDHAT_SUPPORT_PRODUCT}"
|
53
|
+
platform_version="${ROCKY_SUPPORT_PRODUCT_VERSION}"
|
54
|
+
platform=$ID
|
55
|
+
|
56
|
+
elif test "$platform" = "xenserver"; then
|
51
57
|
# Current XenServer 6.2 is based on CentOS 5, platform is not reset to "el" server should handle response
|
52
58
|
platform="xenserver"
|
53
59
|
else
|
@@ -62,20 +68,25 @@ elif test -f "/etc/system-release"; then
|
|
62
68
|
. /etc/os-release
|
63
69
|
platform_version=$VERSION_ID
|
64
70
|
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
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
|
77
87
|
esac
|
78
88
|
|
89
|
+
|
79
90
|
# Apple macOS
|
80
91
|
elif test -f "/usr/bin/sw_vers"; then
|
81
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
|