slackpkg/doinst.sh
Patrick J. Volkerding 09868036d8 doinst.sh Don't remove ChangeLog.txt upon upgrade/reinstall.
We're going to stop doing this and see if anything breaks :-)

Signed-off-by: Robby Workman <rworkman@slackware.com>
2018-06-14 22:58:56 -05:00

39 lines
929 B
Bash

config() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
# If there's no config file by that name, mv it over:
if [ ! -r $OLD ]; then
mv $NEW $OLD
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then # toss the redundant copy
rm $NEW
fi
# Otherwise, we leave the .new copy for the admin to consider...
}
copy_mirror_file() {
ARCH=$(uname -m)
case $ARCH in
i386|i486|i586|i686)
SRCMIRROR=mirrors-x86.sample
;;
x86-64|x86_64|X86-64|X86_64)
SRCMIRROR=mirrors-x86_64.sample
;;
s390)
SRCMIRROR=mirrors-s390.sample
;;
arm*)
SRCMIRROR=mirrors-arm.sample
;;
*)
SRCMIRROR=mirrors-x86.sample
;;
esac
cp usr/doc/slackpkg-@VERSION@/$SRCMIRROR etc/slackpkg/mirrors.new
}
copy_mirror_file
config etc/slackpkg/mirrors.new
config etc/slackpkg/slackpkg.conf.new
config etc/slackpkg/blacklist.new
rm -f var/lib/slackpkg/pkglist