blob: a2210a44764dab5cd8bc0c1f861ce981e11a8382 (
plain)
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
|
#!/bin/bash
usage() {
>&2 echo 'usage: update-me [-s|-c] [-u[ ]$user]'
>&2 echo ' -s: play it save'
>&2 echo ' -c: clear for exit'
>&2 echo ' -u$user: safety-file should be owned by $user'
exit 1
}
play_it_safe=false
safety_file='/tmp/update-me.do-not-exit'
flags="$*"
while [ $# -gt 0 ]; do
case "x$1" in
'x-s')
play_it_safe=true
;;
'x-c')
if [ -f "${safety_file}" ] && ps $(cat "${safety_file}") >/dev/null; then
rm "${safety_file}"
exit 0
fi
if pgrep -x update-me | grep -vqxF $$; then
exit 1
else
exit 2
fi
;;
'x-u'*)
user="${1#-u}"
;;
*)
usage
;;
esac
shift
done
preCmds=('uname -n')
cmds=()
postCmds=('sync')
for mp in '/' '/boot'; do
mountpoint -q "${mp}" || continue
mount \
| cut -d' ' -f3,6 \
| grep "^${mp}\s" \
| cut -d' ' -f2 \
| grep -qwF 'ro' || continue
[ "${mp}" = '/boot' ] && [ -d '#ETCDIR#/ports' ] && continue
preCmds+=('mount -o remount,rw '"${mp}")
if command -v shutdownasap >/dev/null; then
if command -v screen >/dev/null; then
postCmds+=('mount -o remount,ro '"${mp}"' || screen -d -m shutdownasap -r')
else
postCmds+=('mount -o remount,ro '"${mp}"' || shutdownasap -r')
fi
else
postCmds+=('mount -o remount,ro '"${mp}"' || reboot')
fi
done
if command -v check-kernel >/dev/null; then
postCmds+=('check-kernel -r')
fi
if command -v /usr/share/archlinux/contrib/admin/checkservices >/dev/null; then
postCmds+=(/usr/share/archlinux/contrib/admin/checkservices)
fi
command_needs_root() {
local cmd
cmd="$1"
cmd="${cmd%% *}"
cmd="${cmd##*/}"
if [ "${cmd}" = 'mount' ] \
|| [ "${cmd}" = 'checkservices' ] \
|| [ "${cmd}" = 'check-kernel' ]; then
return 0
else
return 1
fi
}
opportunity_for_rescue_shell() {
if "${play_it_safe}"; then
printf '%s' "$$" >"${safety_file}"
if [ -n "${user}" ] && [ "$(whoami)" != "${user}" ]; then
chown "${user}" "${safety_file}"
fi
>&2 printf '%s: waiting for clearance ...' "$(uname -n)"
while read -t 0.0001; do
:
done
while [ -f "${safety_file}" ] && [ "$(cat "${safety_file}")" = "$$" ]; do
if read -t 1; then
>&2 printf ' rescue shell!\n'
bash
break
fi
done
>&2 printf ' clear.\n'
play_it_safe=false
fi
}
exit_or_rescue_shell() {
opportunity_for_rescue_shell
if [ "$1" -eq 0 ]; then
>&2 printf '%s: Erfolg\n' "$(uname -n)"
else
>&2 printf '%s: Fehler\n' "$(uname -n)"
fi
while read -t 0.0001; do
:
done
read s
if [ -n "${s}" ]; then
bash
fi
exit "$1"
}
nochmal_versuchen() {
>&2 printf '%s (%s): Fehler - nochmal versuchen?\n' "$(uname -n)" "${cmd}"
while read -t 0.0001; do
:
done
read s
if [ -n "${s}" ]; then
return 1
else
return 0
fi
}
. #ETCDIR#/update-me.conf
if ! command -v sudo >/dev/null; then
hasSudo=false
fi
if [ ! "$(whoami)" == "root" ]; then
if ! "${hasSudo}"; then
uname -n
err=1
maxCount=3
while [ ${err} -eq 1 ] && [ ${maxCount} -gt 0 ]
do
su -c "$(readlink -f "$0") ${flags} -u$(whoami) || exit 2"
err=$?
maxCount=$[${maxCount} - 1]
done
exit ${err}
fi
pre='sudo'
else
pre=''
fi
if [ ${#cmds[@]} -eq 0 ]
then
if [ -d '#ETCDIR#/pacman.d' ]
then
cmds=('pacman -Syu' 'pacdiff')
elif [ -d '#ETCDIR#/ports' ]
then
cmds=('ports -u' 'prt-get --install-scripts sysup' 'rejmerge' 'revdep')
elif [ -d '#ETCDIR#/apt' ]
then
cmds=('apt-get update' 'apt-get upgrade' 'apt-get dist-upgrade' 'apt-get autoremove')
else
>&2 echo 'Unknown distribution!'
exit 1
fi
fi
for cmd in "${preCmds[@]}"
do
if command_needs_root "${cmd}"; then
eval ${pre} ${cmd}
else
eval ${cmd}
fi
err=$?
while [ ${err} -ne 0 ] && nochmal_versuchen; do
if command_needs_root "${cmd}"; then
eval ${pre} ${cmd}
else
eval ${cmd}
fi
err=$?
done
if [ ${err} -ne 0 ]
then
exit_or_rescue_shell ${err}
fi
done
for cmd in "${cmds[@]}"
do
eval ${pre} ${cmd}
err=$?
while [ ${err} -ne 0 ] && nochmal_versuchen; do
eval ${pre} ${cmd}
err=$?
done
if [ ${err} -ne 0 ]; then
exit_or_rescue_shell ${err}
fi
done
opportunity_for_rescue_shell
for cmd in "${postCmds[@]}"
do
if command_needs_root "${cmd}"; then
eval ${pre} ${cmd}
else
eval ${cmd}
fi
err=$?
while [ ${err} -ne 0 ] && nochmal_versuchen; do
if command_needs_root "${cmd}"; then
eval ${pre} ${cmd}
else
eval ${cmd}
fi
err=$?
done
if [ ${err} -ne 0 ]
then
exit_or_rescue_shell ${err}
fi
done
exit_or_rescue_shell 0
|