Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 3.133.113.24
#!/bin/sh
#
CDROM_MOUNT="$1"
for d in "$CDROM_MOUNT"/dists/*/main/dist-upgrader/binary-all/; do
if [ -d "$d" ]; then
UPGRADER_DIR="$d"
break
fi
done
TAR=$(basename "$UPGRADER_DIR"/*.tar.gz)
CODENAME=${TAR%.tar.gz}
# get a tempdir
TMPDIR=$(mktemp -t -d distupgrade.XXXXXX)
cd $TMPDIR
# extract the tar
tar xzf "$UPGRADER_DIR"/"$TAR"
# apply any patches needed before running the upgrade
for apatch in /usr/share/update-notifier/upgrader-patches/*.diff; do
if patch --dry-run < "$apatch"; then
patch < "$apatch"
fi
done
# run it
"$TMPDIR"/"$CODENAME" --cdrom "$CDROM_MOUNT"
|