We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3c40bbd + 13a9a4b commit 7b98a72Copy full SHA for 7b98a72
metadata.json
@@ -46,6 +46,12 @@
46
}
47
],
48
"operatingsystem_support": [
49
+ {
50
+ "operatingsystem": "Amazon",
51
+ "operatingsystemrelease": [
52
+ "2"
53
+ ]
54
+ },
55
{
56
"operatingsystem": "RedHat",
57
"operatingsystemrelease": [
tasks/precheck.sh
@@ -11,6 +11,9 @@ elif grep -qi redhat /etc/os-release && [[ "$(cat /proc/sys/crypto/fips_enabled)
11
osfamily="redhatfips"
12
else
13
osfamily="el"
14
+ if grep -qi amazon /etc/os-release && grep -qi 'VERSION_ID="2"' /etc/os-release; then
15
+ version=7
16
+ fi
17
fi
18
19
# OS-specific modifications
0 commit comments