slackware-current/source/a/kbd/doinst.sh
Patrick J Volkerding d387e58ecc Wed Nov 8 22:04:25 UTC 2023
a/kbd-2.6.3-x86_64-1.txz:  Upgraded.
  Thanks to Robby Workman.
a/kernel-firmware-20231107_2340796-noarch-1.txz:  Upgraded.
a/kernel-generic-6.1.62-x86_64-1.txz:  Upgraded.
a/kernel-huge-6.1.62-x86_64-1.txz:  Upgraded.
a/kernel-modules-6.1.62-x86_64-1.txz:  Upgraded.
ap/sudo-1.9.15p1-x86_64-1.txz:  Upgraded.
  This is a bugfix release:
  Fixed a bug introduced in sudo 1.9.15 that prevented LDAP-based sudoers
  from being able to read the ldap.conf file.
d/kernel-headers-6.1.62-x86-1.txz:  Upgraded.
k/kernel-source-6.1.62-noarch-1.txz:  Upgraded.
kde/plasma-wayland-protocols-1.11.0-x86_64-1.txz:  Upgraded.
l/liburing-2.5-x86_64-1.txz:  Upgraded.
xap/mozilla-thunderbird-115.4.2-x86_64-1.txz:  Upgraded.
  This is a bugfix release.
  For more information, see:
    https://www.mozilla.org/en-US/thunderbird/115.4.2/releasenotes/
xap/xlockmore-5.74-x86_64-1.txz:  Upgraded.
isolinux/initrd.img:  Rebuilt.
kernels/*:  Upgraded.
usb-and-pxe-installers/usbboot.img:  Rebuilt.
2023-11-08 23:36:11 +01:00

28 lines
735 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...
}
# Leave any new rc.font with the same permissions as the old one:
# This is a kludge, but it's because there's no --reference option
# on busybox's 'chmod':
if [ -e etc/rc.d/rc.font ]; then
if [ -x etc/rc.d/rc.font ]; then
chmod 755 etc/rc.d/rc.font.new
else
chmod 644 etc/rc.d/rc.font.new
fi
fi
# Then config() it:
config etc/rc.d/rc.font.new
config etc/pam.d/vlock.new