mirror of
git://slackware.nl/current.git
synced 2024-12-26 09:58:59 +01:00
3fb38a9206
a/kernel-firmware-20230110_a1ad1d5-noarch-1.txz: Upgraded. n/ca-certificates-20221205-noarch-2.txz: Rebuilt. Make sure that if we're installing this package on another partition (such as when using installpkg with a --root parameter) that the updates are done on that partition. Thanks to fulalas. x/libva-utils-2.17.1-x86_64-1.txz: Upgraded. xfce/libxfce4util-4.18.1-x86_64-1.txz: Upgraded. xfce/thunar-4.18.2-x86_64-1.txz: Upgraded.
27 lines
1 KiB
Bash
27 lines
1 KiB
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...
|
|
}
|
|
|
|
# Actually, with this being auto-generated and strongly tied to the
|
|
# filelist in this package, it's not a good idea to try to preserve
|
|
# this config file. For local certs, simply install them in the
|
|
# /usr/local/share/ca-certificates directory.
|
|
#config etc/ca-certificates.conf.new
|
|
|
|
# We don't want to run this from the installer because we've got a script
|
|
# that runs it after all the packages are installed. But if we do run it,
|
|
# we should chroot into the target partition to make sure the updates are
|
|
# done in the correct location (and not on the calling partition):
|
|
if [ ! -r /usr/lib/setup/setup ]; then
|
|
chroot . /usr/sbin/update-ca-certificates --fresh 1> /dev/null 2> /dev/null
|
|
fi
|
|
|