-
Notifications
You must be signed in to change notification settings - Fork 20
/
checkAPFSSettings.sh
executable file
·160 lines (143 loc) · 3.06 KB
/
checkAPFSSettings.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
#!/bin/sh
#
# Bash script to check APFS conversion settings in macOS Install Data.
#
# version 1.5 - Copyright (c) 2017 by Pike R. Alpha ([email protected])
#
# Updates:
# - Add comments.
# - Automatic target volume selection.
# - Check for PlistBuddy added (triggers xcode-select --install).
# - Fix targetFile(s).
# - Show targetVolume(s).
#
# Note: run with 'sudo' or changes won't be made!
#
# Initialisation of a variable.
#
let index=0
#
# Change additional shell optional behavior (expand unmatched names to a null string).
#
shopt -s nullglob
#
# Change to Volumes folder.
#
cd /Volumes
#
# Default target volume is root.
#
targetVolume="/"
#
# Collect available target volume names.
#
targetVolumes=(*)
#
# Loop through volumes.
#
for volume in "${targetVolumes[@]}"
do
#
# Is there a macOS Install Data folder?
#
if [ -e "/Volumes/${targetVolumes[$index]}/macOS Install Data" ];
then
#
# Yes. Use it as our target volume (there should only be one).
#
targetVolume="/Volumes/${volume}"
printf "Target Volume: ${targetVolume}\n"
#
# Done.
#
break
fi
#
#
#
let index++
done
#
# Setup target path.
#
filePath="${targetVolume}/macOS Install Data"
#
# Path to PlistBuddy.
#
plistBuddy="/usr/libexec/PlistBuddy"
#
# Check for PlistBuddy (part of developer tools).
#
if [ ! -e "${plistBuddy}" ];
then
#
# Install developer tools.
#
xcode-select --install
fi
#
# First target file to check.
#
targetFile="${targetVolume}/macOS Install Data/minstallconfig.xml"
#
# Check if file exists.
#
if [ -e "${targetFile}" ];
then
if [ $("${plistBuddy}" -c "Print:ConvertToAPFS" "${targetFile}") == "true" ];
then
echo 'ConvertToAPFS = true'
else
echo 'ConvertToAPFS = false'
fi
fi
#
# Second target file to check.
#
targetFile="${targetVolume}/macOS Install Data/OSInstallAttr.plist"
#
# Check if file exists.
#
if [ -e "${targetFile}" ];
then
if [ $("${plistBuddy}" -c "Print:Do\ APFS\ Convert" "${targetFile}") == "true" ];
then
echo 'Do APFS Convert = true'
else
echo 'Do APFS Convert = false'
fi
fi
#
# Third target file to check.
#
targetFile="${targetVolume}/macOS Install Data/Locked Files/minstallconfig.xml"
#
# Check if file exists.
#
if [ -e "${targetFile}" ];
then
if [ $("${plistBuddy}" -c "Print:ConvertToAPFS" "${targetFile}") == "true" ];
then
echo 'ConvertToAPFS = true'
"${plistBuddy}" -c "Set :ConvertToAPFS 0" "${targetFile}"
else
echo 'ConvertToAPFS = false'
fi
fi
#
# Fourth and last target file to check.
#
targetFile="${targetVolume}/macOS Install Data/Locked Files/OSInstallAttr.plist"
#
# Check if file exists.
#
if [ -e "${targetFile}" ];
then
if [ $("${plistBuddy}" -c "Print :Do\ APFS\ Convert" "${targetFile}") == "true" ];
then
echo 'Do APFS Convert = true'
"${plistBuddy}" -c "Set :Do\ APFS\ Convert 0" "${targetFile}"
else
echo 'Do APFS Convert = false'
fi
fi