forked from macadmins/sofa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmacOSCompatibilityCheck-EA.sh
executable file
·107 lines (93 loc) · 4.37 KB
/
macOSCompatibilityCheck-EA.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#!/bin/zsh --no-rcs
# shellcheck shell=bash
# Check if the model does support the latest version of macOS using SOFA
# by Balz Aschwanden
#
# adopted from the following script by Graham Pugh
# https://github.com/macadmins/sofa/blob/main/tool-scripts/macOSVersionCheck-EA.sh
# Compatibility for older macOS versions using python added by G Pugh
# Get current system OS
system_version=$( /usr/bin/sw_vers -productVersion )
# system_version=14.1 # UNCOMMENT AND ADJUST TO TEST OLDER VERSIONS
system_os=$(cut -d. -f1 <<< "$system_version")
echo "System Version: $system_version"
if [[ $system_os -ge 12 ]]; then
# use plistlib
os_compatibility="current"
else
# use python 2.7
os_compatibility="legacy"
python_path="/usr/bin/python"
fi
# URL to the online JSON data
online_json_url="https://sofafeed.macadmins.io/v1/macos_data_feed.json"
user_agent="SOFA-Jamf-EA-macOSCompatibilityCheck/1.1"
# local store
json_cache_dir="/private/tmp/sofa"
json_cache="$json_cache_dir/macos_data_feed.json"
etag_cache="$json_cache_dir/macos_data_feed_etag.txt"
etag_cache_temp="$json_cache_dir/macos_data_feed_etag_temp.txt"
# ensure local cache folder exists
/bin/mkdir -p "$json_cache_dir"
# check local vs online using etag (only available on macOS 12+)
if [[ -f "$etag_cache" && -f "$json_cache" ]]; then
etag_old=$(/bin/cat "$etag_cache")
/usr/bin/curl --compressed --silent --etag-compare "$etag_cache" --etag-save "$etag_cache_temp" --header "User-Agent: $user_agent" "$online_json_url" --output "$json_cache"
etag_temp=$(/bin/cat "$etag_cache_temp")
if [[ "$etag_old" == "$etag_temp" || $etag_temp == "" ]]; then
echo "Cached ETag matched online ETag - cached json file is up to date"
/bin/rm "$etag_cache_temp"
else
echo "Cached ETag did not match online ETag, so downloaded new SOFA json file"
/bin/mv "$etag_cache_temp" "$etag_cache"
fi
elif [[ "$os_compatibility" == "legacy" ]]; then
echo "OS not compatible with e-tags, proceeding to download SOFA json file"
/usr/bin/curl --compressed --location --max-time 3 --silent --header "User-Agent: $user_agent" "$online_json_url" --output "$json_cache"
else
echo "No e-tag or SOFA json file cached, proceeding to download SOFA json file"
/usr/bin/curl --compressed --location --max-time 3 --silent --header "User-Agent: $user_agent" "$online_json_url" --etag-save "$etag_cache" --output "$json_cache"
fi
echo
if [[ ! -f "$json_cache" ]]; then
echo "<result>Could not obtain data</result>"
exit
elif [[ "$os_compatibility" == "legacy" ]]; then
if ! "$python_path" -c 'import sys, json; print json.load(sys.stdin)["UpdateHash"]' < "$json_cache" > /dev/null; then
echo "<result>Could not obtain data</result>"
exit
fi
elif ! /usr/bin/plutil -extract "UpdateHash" raw "$json_cache" > /dev/null; then
echo "<result>Could not obtain data</result>"
exit
fi
# Get model (DeviceID)
model=$(/usr/sbin/sysctl -n hw.model)
echo "Model Identifier: $model"
# check that the model is virtual or is in the feed at all
if [[ $model == "VirtualMac"* ]]; then
# if virtual, we need to arbitrarily choose a model that supports all current OSes. Plucked for an M1 Mac mini
model="Macmini9,1"
elif ! grep -q "$model" "$json_cache"; then
echo "<result>Unsupported Hardware</result>"
exit
fi
if [[ "$os_compatibility" == "current" ]]; then
# identify the latest major OS (macOS 12+ method)
latest_os=$(/usr/bin/plutil -extract "OSVersions.0.OSVersion" raw -expect string "$json_cache" | /usr/bin/head -n 1)
# idenfity latest compatible major OS (macOS 12+ method)
latest_compatible_os=$(/usr/bin/plutil -extract "Models.$model.SupportedOS.0" raw -expect string "$json_cache" | /usr/bin/head -n 1)
else
# identify the latest major OS (macOS 11- method)
latest_os=$("$python_path" -c 'import sys, json; print json.load(sys.stdin)["OSVersions"][0]["OSVersion"]' < "$json_cache" | /usr/bin/head -n 1)
# idenfity latest compatible major OS (macOS 11- method)
latest_compatible_os=$("$python_path" -c 'import sys, json; print json.load(sys.stdin)["Models"]['"$model"']["SupportedOS"][0]' < "$json_cache" | /usr/bin/head -n 1)
fi
echo "Latest macOS: $latest_os"
echo "Latest Compatible macOS: $latest_compatible_os"
# Compare latest with compatible
if [[ "$latest_os" == "$latest_compatible_os" ]];then
echo "<result>Pass</result>"
else
echo "<result>Fail</result>"
fi