File switch-enterprise-nu-mirror of Package yup
1
#!/bin/bash
2
export LANG=C
3
# Script to upgrade a host, which is subscribed to an enterprise-internal
4
# mirror of the Novell update service, to SLE?10 SP1.
5
# It is assumed that the update tree has the structure that yup builds.
6
7
# 05 Jul 2007 Andreas Taschner
8
#
9
# Changelog :
10
# 01 Aug 2007 : Fixed typos in info messages
11
# More informational messages in log about progress
12
# Eliminate "...failed" messages on console when shutting down ZMD
13
# Proactively kill zen-updater desktop task as it sometimes gets
14
# confused and abends
15
# 03 Aug 2007 : Add support for SDK
16
# 30 Aug 2007 : Add explicit installation of product-sdk10-sp1 patch to
17
# to ensure the product verion of SDK gets updated
18
# 31 Aug 2007 : Unsubscribe from the SLE?10-SP1-Online catalog after upgrade,
19
# but keep it in the list to preserve virtual SP1 installation source
20
# 05 Sep 2007 : Minimized the need for manual intervention to customize the script
21
# Add extra restart of ZMD after stage 4
22
# 06 Sep 2007 : Syntax-check of $UPDATE_ROOT
23
# 19 Sep 2007 : v0.28
24
# Change the way we check if zmd has settled (Bug 309861). Now we
25
# check for pending services rather than # of available updates, since an
26
# up-to-date system would fail the first of these checks.
27
# Added more checks on whether zmd has settled. Misc cosmetics.
28
# Improved handling of rug errors in stage 5 and 6
29
# 02 Oct 2007 : v0.33
30
# By default update the SDK if it is installed unless $UPDATE_SDK = NO
31
# Verify existence of the various repositories (currently only
32
# checks for nfs and http based repos) and exit on errors
33
# prior to adding services. Misc cosmetics.
34
35
#
36
# !!!!! M A N U A L I N T E R V E N T I O N R E Q U I R E D !!!!!
37
#
38
# Change at least the UPDATE_ROOT parameter below to fit the setup in your environment
39
#
40
41
echo "ADAPT THE CONFIGURATION BELOW THEN DELETE THIS AND THE NEXT LINE"
42
exit 1
43
44
# Specify the URL of the top of your update repository tree,
45
# eg. http://your.server.example.com/SLE10-YUP/
46
# Remember the trailing slash !
47
UPDATE_ROOT=""
48
49
# If architecture is different from i586 or x86_64, you must set $ARCH
50
ARCH=""
51
52
# This script will check if the SLE 10 SDK is installed and upgrade it
53
# assuming that updates for the SLE-10-SDK-* are also mirrored with
54
# yup and exist in the update repo tree of SLE (for naming reasons).
55
# If you for some reason do NOT want to upgrade the SDK along with the OS
56
# (not having the SDK at the same level as the OS can lead to problems)
57
# you must change
58
# UPDATE_SDK to NO.
59
UPDATE_SDK="YES"
60
61
#############################################################################
62
# No need to change anything below this line #
63
#############################################################################
64
65
66
if [ `id -u` != 0 ]; then
67
echo "You need to be root to run this script"
68
exit 7
69
fi
70
71
# Log file
72
exec >> /var/log/YaST2/switchUpdateServer.log
73
74
# Functions start
75
is_anything_pending ()
76
{
77
# Check if ZMD has any services in pending state
78
i=0
79
SOMETHING_IS_PENDING="YES"
80
while [[ $i -lt 6 ]] ; do
81
if ! [[ `rug sl | grep -i Pending` ]] ; then
82
SOMETHING_IS_PENDING="NO"
83
break
84
else
85
echo "Waiting for services to get out of pending state"
86
sleep 30
87
fi
88
((i++))
89
done
90
if [[ $SOMETHING_IS_PENDING = "YES" ]] ; then
91
echo "ZMD does not settle from pending state - exiting..."
92
exit 2
93
fi
94
}
95
96
restart_zmd_firmly ()
97
{
98
# It is a cumbersome process to choke ZMD completely ...
99
ZMD_STILL_RUNNING="YES"
100
/usr/sbin/rczmd stop 2>&1
101
i=0
102
while [[ $i -lt 10 ]] ; do
103
/usr/sbin/rczmd status
104
if [[ $? -eq 3 ]] ; then
105
ZMD_STILL_RUNNING="NO"
106
break
107
else
108
echo "Waiting for ZMD to terminate properly"
109
sleep 20
110
rczmd stop 2>&1
111
fi
112
((i++))
113
done
114
115
if [[ $ZMD_STILL_RUNNING = "YES" ]] ; then
116
echo "Pulling the plug on ZMD"
117
killall -9 zmd
118
sleep 10
119
fi
120
# Since we may get "An instance of ZMD is already running" although
121
# /etc/init.d/zmd status reports it as unused, we add yet another delay
122
sleep 30
123
124
echo "Restarting ZMD"
125
rczmd start
126
# Wait for ZMD to calm down
127
sleep 60
128
is_anything_pending
129
}
130
131
time_stamp ()
132
{
133
# Create time stamp in log file
134
echo "------------------------------------------------------------------- "
135
date
136
echo "------------------------------------------------------------------- "
137
}
138
139
check_if_repo_exists ()
140
{
141
# If the file repodata/repomd.xml file exists in a service URL
142
# we consider the repository to be existing
143
# Unfortunately we currently only support this check for http-based
144
# repository access
145
if [[ $REPO_PROTOCOL == "http" ]] ; then
146
curl -f -o /dev/null $REPO"repodata/repomd.xml" 1>/dev/null 2>&1
147
if [ $? != 0 ] ;then
148
repo_error
149
exit 5
150
fi
151
elif [[ $REPO_PROTOCOL = "nfs" ]] ; then
152
REPO_SHARE=`echo $REPO | awk -F ":" '{print $2}' \
153
| sed -e "s/\/\///g" | sed -e "s/^$REPO_HOST//g"`
154
mount -t nfs -o ro $REPO_HOST":"$REPO_SHARE $TMPDIR
155
MOUNT_RC=$?
156
if [ $MOUNT_RC != 0 ] ;then
157
repo_error
158
exit 5
159
fi
160
if ! test -r $TMPDIR"/repodata/repomd.xml" ; then
161
repo_error
162
umount $TMPDIR
163
exit 5
164
fi
165
umount $TMPDIR
166
elif [[ $REPO_PROTOCOL = "https" ]] ; then
167
# Feel free to implement checks for this protocol
168
echo "Repo existence not implemented for $REPO_PROTOCOL"
169
fi
170
}
171
172
repo_error ()
173
{
174
echo "The following repository does not exist or is inconsistent :"
175
echo "The following repository does not exist or is inconsistent :" >&2
176
echo ">>>>> "$REPO "<<<<<"
177
echo ">>>>> "$REPO "<<<<<" >&2
178
echo ; echo "Aborting execution ..."
179
echo ; echo "Aborting execution ..." >&2
180
}
181
# Functions end
182
183
time_stamp
184
# Initialize variable(s)
185
SDK_10_0_INSTALLED="NO"
186
SCRIPTNAME=`basename $0`
187
TMPDIR=/tmp/$SCRIPTNAME.$$
188
189
# Detect product (SLES/SLED)
190
if grep -i "suse linux enterprise desktop" /etc/SuSE-release >/dev/null 2>&1 ; then
191
PRODUCT="sled"
192
PRODUCT_CAPS="SLED"
193
else
194
PRODUCT="sles"
195
PRODUCT_CAPS="SLES"
196
fi
197
198
# Detect architechture (i586 or x86_64 unless specified in $ARCH)
199
if [[ $ARCH = "" ]]; then
200
if grep -i "i586" /etc/SuSE-release >/dev/null 2>&1 ; then
201
ARCH="i586"
202
elif grep -i "x86_64" /etc/SuSE-release >/dev/null 2>&1 ; then
203
ARCH="x86_64"
204
fi
205
fi
206
207
# Construct the service URLs and names
208
# Add trailing slash to $UPDATE_ROOT in case forgotten
209
if ! echo $UPDATE_ROOT| grep \/$ >/dev/null 2>&1 ; then
210
UPDATE_ROOT=$UPDATE_ROOT"/"
211
fi
212
OLD_UPDATES_SERVICE_URL=$UPDATE_ROOT$PRODUCT_CAPS"10-Updates/"$PRODUCT"-10-"$ARCH"/"
213
NEW_SP_ONLINE_URL=$UPDATE_ROOT$PRODUCT_CAPS"10-SP1-Online/"$PRODUCT"-10-"$ARCH"/"
214
NEW_SP_ONLINE_NAME=$PRODUCT_CAPS"10-SP1-Online"
215
NEW_SP_UPDATES_URL=$UPDATE_ROOT$PRODUCT_CAPS"10-SP1-Updates/"$PRODUCT"-10-"$ARCH"/"
216
NEW_SP_UPDATES_NAME=$PRODUCT_CAPS"10-SP1-Updates"
217
218
# Determine access protocol to update repository
219
case `echo $UPDATE_ROOT | awk -F ":" '{print $1}'` in
220
http ) REPO_PROTOCOL="http" ;;
221
https ) REPO_PROTOCOL="https" ;;
222
nfs ) REPO_PROTOCOL="nfs"
223
REPO_HOST=`echo $UPDATE_ROOT | awk -F ":" '{print $2}' \
224
| awk -F "/" '{print $3}'`
225
test -w $TMPDIR || mkdir $TMPDIR ;;
226
esac
227
228
# Verify existence of the repositories
229
REPO=$OLD_UPDATES_SERVICE_URL
230
check_if_repo_exists
231
REPO=$NEW_SP_ONLINE_URL
232
check_if_repo_exists
233
REPO=$NEW_SP_UPDATES_URL
234
check_if_repo_exists
235
236
# Check if the machine is indeed already subscribed to $OLD_UPDATES_SERVICE_URL
237
# If not, then we do it
238
SERVICE_OR_CAT_CHANGED="NO"
239
SUBSCRIBED_TO_OLD_SERVICE="NO"
240
i=0
241
while [[ $i -lt 4 ]] ; do
242
OLD_CATALOG=''
243
# Handle missing trailing slash in existing service URL
244
TMP_OLD_URL=`echo $OLD_UPDATES_SERVICE_URL | sed -e "s/\/$//g"`
245
OLD_CATALOG=$(rug --no-abbrev sl |grep -i -F "active" | grep -F "$TMP_OLD_URL" | \
246
awk -F "|" '{print $4}' | sed 's/ //g')
247
if [[ $OLD_CATALOG != '' ]] ; then
248
rug ca |grep -i "yes" | grep -F "$OLD_CATALOG"
249
if [ $? -eq 0 ] ; then
250
SUBSCRIBED_TO_OLD_SERVICE="YES"
251
break
252
else
253
echo "Not subscribed to the old update service catalog - subscribing ..."
254
SERVICE_OR_CAT_CHANGED="YES"
255
rug sub $OLD_CATALOG
256
fi
257
else
258
echo "Old update service not in the service list - adding it ..."
259
SERVICE_OR_CAT_CHANGED="YES"
260
rug sa -t zypp $OLD_UPDATES_SERVICE_URL SLEx10-Updates
261
fi
262
((i++))
263
done
264
if [[ $SUBSCRIBED_TO_OLD_SERVICE = "NO" ]] ; then
265
echo "Not able to subscribe to old update service - exiting"
266
exit 3
267
fi
268
269
# SDK
270
if [[ $UPDATE_SDK = "YES" ]] ; then
271
# Check if the SDK product is installed
272
QUERYPOOL="/usr/lib/zmd/query-pool"
273
if [ ! -x $QUERYPOOL ]; then
274
QUERYPOOL="/usr/lib64/zmd/query-pool"
275
if [ ! -x $QUERYPOOL ]; then
276
# query-pool not found
277
echo "query-pool command not found" >&2
278
echo "query-pool command not found"
279
exit 6;
280
fi
281
fi
282
if [[ `/usr/lib/zmd/query-pool products @system \
283
| grep "SUSE-Linux-Enterprise-SDK" | grep "10-0"` ]] ; then
284
SDK_10_0_INSTALLED="YES"
285
fi
286
if [[ $SDK_10_0_INSTALLED = "YES" ]] ; then
287
# Construct the service URLs and names
288
OLD_SDK_SERVICE_URL=$UPDATE_ROOT"SLE10-SDK-Updates/sles-10-"$ARCH"/"
289
NEW_SDK_SP_ONLINE_URL=$UPDATE_ROOT"SLE10-SDK-SP1-Online/sles-10-"$ARCH"/"
290
NEW_SDK_SP_ONLINE_NAME="SLE10-SDK-SP1-Online"
291
NEW_SDK_SP_UPDATES_URL=$UPDATE_ROOT"SLE10-SDK-SP1-Updates/sles-10-"$ARCH"/"
292
NEW_SDK_SP_UPDATES_NAME="SLE10-SDK-SP1-Updates"
293
# Verify existence of the repositories
294
REPO=$OLD_SDK_SERVICE_URL
295
check_if_repo_exists
296
REPO=$NEW_SDK_SP_ONLINE_URL
297
check_if_repo_exists
298
REPO=$NEW_SDK_SP_UPDATES_URL
299
check_if_repo_exists
300
# Check if the machine is indeed already subscribed to $OLD_SDK_SERVICE_URL
301
# If not, then we do it
302
SUBSCRIBED_TO_OLD_SERVICE="NO"
303
i=0
304
while [[ $i -lt 4 ]] ; do
305
OLD_SDK_CATALOG=''
306
# Handle missing trailing slash in existing service URL
307
TMP_OLD_URL=`echo $OLD_SDK_SERVICE_URL | sed -e "s/\/$//g"`
308
OLD_SDK_CATALOG=$(rug --no-abbrev sl |grep -i -F "active" | grep -F "$TMP_OLD_URL" | \
309
awk -F "|" '{print $4}' | sed 's/ //g')
310
if [[ $OLD_SDK_CATALOG != '' ]] ; then
311
rug ca |grep -i "yes" | grep -F "$OLD_SDK_CATALOG"
312
if [ $? -eq 0 ] ; then
313
SUBSCRIBED_TO_OLD_SERVICE="YES"
314
break
315
else
316
echo "Not subscribed to the old SDK update service catalog - subscribing ..."
317
SERVICE_OR_CAT_CHANGED="YES"
318
rug sub $OLD_SDK_CATALOG
319
fi
320
else
321
echo "Old SDK update service not in the service list - adding it ..."
322
SERVICE_OR_CAT_CHANGED="YES"
323
rug sa -t zypp $OLD_SDK_SERVICE_URL SDK10-Updates
324
fi
325
((i++))
326
done
327
if [[ $SUBSCRIBED_TO_OLD_SERVICE = "NO" ]] ; then
328
echo "Not able to subscribe to old SDK update service - exiting"
329
exit 4
330
fi
331
fi
332
fi
333
# SDK end
334
335
time_stamp
336
337
# Kill zen-updater to prevent ugly pop-ups on desktop when it abends
338
killall -9 zen-updater
339
340
# In case we added a service - check if we are cool
341
if [[ $SERVICE_OR_CAT_CHANGED == 'YES' ]] ; then
342
is_anything_pending
343
fi
344
345
echo "Adding SP migration updates service"
346
echo "Adding $NEW_SP_ONLINE_NAME service"
347
rug service-add -t ZYPP $NEW_SP_ONLINE_URL $NEW_SP_ONLINE_NAME
348
echo "Subscribing to the catalog..."
349
rug subscribe $NEW_SP_ONLINE_NAME
350
351
# SDK
352
if [[ $UPDATE_SDK = "YES" ]] && [[ $SDK_10_0_INSTALLED = "YES" ]] ; then
353
sleep 15
354
echo "Adding SDK SP migration updates service"
355
rug service-add -t ZYPP $NEW_SDK_SP_ONLINE_URL $NEW_SDK_SP_ONLINE_NAME
356
echo "Subscribing to the catalog..."
357
rug subscribe $NEW_SDK_SP_ONLINE_NAME
358
fi
359
# SDK end
360
361
# wait for settle
362
sleep 15
363
is_anything_pending
364
365
echo "Installing updates - stage 1 of 6 - "$PRODUCT"p1o-liby2util-devel"
366
rug in -y -t patch ${PRODUCT}p1o-liby2util-devel
367
# The above patch requires zmd to be restarted
368
restart_zmd_firmly
369
time_stamp
370
371
# Perform update to SP1 and then add the SP1 product into /var/lib/zypp
372
373
echo "Installing the GA - SP1 migration updates."
374
375
if [ $PRODUCT == "sled" ] ; then
376
# To force upgrade of gnomeeting to ekiga
377
echo "Replacing gnomemeeting with ekiga"
378
rug in -y -t patch ${PRODUCT}p1o-ekiga
379
fi
380
echo "Installing updates - stage 2 of 6"
381
rug up -y --agree-to-third-party-licences
382
time_stamp
383
384
echo "Installing updates - stage 3 of 6 - Updating product record(s)"
385
rug in -y --agree-to-third-party-licences -t patch product-${PRODUCT}10-sp1
386
time_stamp
387
388
# SDK
389
if [[ $UPDATE_SDK = "YES" ]] && [[ $SDK_10_0_INSTALLED = "YES" ]] ; then
390
rug in -y -t patch product-sdk10-sp1
391
fi
392
# SDK end
393
394
# Disable suse_register at every boot
395
test -d /var/lib/suseRegister || mkdir /var/lib/suseRegister
396
touch /var/lib/suseRegister/neverRegisterOnBoot
397
398
# Clean up services and catalogs
399
echo "Deleting old updates service"
400
rug service-delete $OLD_UPDATES_SERVICE_URL
401
echo "Unsubscribing from SP migration updates catalog"
402
# We still need the $NEW_SP_ONLINE_NAME catalog for the inst source,
403
# so we only unsubscribe
404
rug unsubscribe $NEW_SP_ONLINE_NAME
405
echo "Adding $NEW_SP_UPDATE_NAME service"
406
rug service-add -t ZYPP $NEW_SP_UPDATES_URL $NEW_SP_UPDATES_NAME
407
echo "Subscribing to the catalog..."
408
rug subscribe $NEW_SP_UPDATES_NAME
409
410
# SDK
411
if [[ $UPDATE_SDK = "YES" ]] && [[ $SDK_10_0_INSTALLED = "YES" ]] ; then
412
sleep 60
413
echo "Deleting old SDK updates service"
414
rug service-delete $OLD_SDK_SERVICE_URL
415
echo "Unsubscribing from SDK SP migration updates catalog"
416
# We still need the $NEW_SDK_SP_ONLINE_NAME catalog for the inst source,
417
# so we only unsubscribe
418
rug unsubscribe $NEW_SDK_SP_ONLINE_NAME
419
echo "Adding $NEW_SDK_SP_UPDATES_NAME service"
420
rug service-add -t ZYPP $NEW_SDK_SP_UPDATES_URL $NEW_SDK_SP_UPDATES_NAME
421
echo "Subscribing to the catalog..."
422
rug subscribe $NEW_SDK_SP_UPDATES_NAME
423
fi
424
# SDK end
425
426
# Wait for ZMD to calm down
427
sleep 60
428
is_anything_pending
429
430
# These are post-sp1 but still necessary for some fixes...
431
echo "Installing updates - stage 4 of 6 - ${PRODUCT}p1-yast2-online-update"
432
rug in -y -t patch ${PRODUCT}p1-yast2-online-update
433
434
# Since zmd periodically chokes here we need to restart and wait for
435
# a really long time for it to get sober
436
restart_zmd_firmly
437
time_stamp
438
sleep 240
439
is_anything_pending
440
441
echo "Installing updates - stage 5 of 6 - ${PRODUCT}p1-perl-Bootloader"
442
rug in -y -t patch ${PRODUCT}p1-perl-Bootloader
443
# Sometimes rug fails with weird errors at this point, so we
444
# need to check on the returncode and restart zmd if it is non-zero
445
# Sorry about the clumsy coding
446
if [ $? -ne 0 ] ; then
447
echo "Stage 5 failed so we restart zmd and try once more - only once"
448
restart_zmd_firmly
449
time_stamp
450
sleep 300
451
is_anything_pending
452
echo "Installing updates - stage 5 of 6 - ${PRODUCT}p1-perl-Bootloader - second try..."
453
rug in -y -t patch ${PRODUCT}p1-perl-Bootloader
454
fi
455
456
echo "Installing updates - stage 6 of 6 - post-SP1 updates"
457
rug up -y --agree-to-third-party-licences
458
# Sometimes rug fails with weird errors at this point, so we
459
# need to check on the returncode and restart zmd if it is non-zero
460
# Sorry about the clumsy coding
461
if [ $? -ne 0 ] ; then
462
echo "Stage 6 failed so we restart zmd and try once more - only once"
463
restart_zmd_firmly
464
time_stamp
465
sleep 300
466
is_anything_pending
467
echo "Installing updates - stage 6 of 6 - post-SP1 updates - second try..."
468
rug up -y --agree-to-third-party-licences
469
fi
470
echo "Done."
471
472
echo "You should reboot the machine now since the kernel has been updated."
473
time_stamp
474
475
# Clean up
476
test -w $TMPDIR && rm -r $TMPDIR ;
477
# reboot
478