slackware-current/source/a/sysklogd/doinst.sh
Patrick J Volkerding 93abc85df8 Fri Jun 26 19:18:25 UTC 2020
a/sysklogd-2.1.2-x86_64-1.txz:  Upgraded.
  Make sure to move the .new init script and config into place for this.
ap/undervolt-20200612_07d0c70-x86_64-1.txz:  Added.
l/popt-1.18-x86_64-1.txz:  Upgraded.
x/libglvnd-1.3.2-x86_64-1.txz:  Upgraded.
x/libva-2.8.0-x86_64-1.txz:  Upgraded.
x/libva-utils-2.8.0-x86_64-1.txz:  Upgraded.
2020-06-27 08:59:53 +02:00

30 lines
808 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...
}
config etc/default/syslogd.new
config etc/logrotate.d/syslog.new
config etc/rc.d/rc.syslog.new
config etc/syslog.conf.new
config var/log/cron.new
config var/log/debug.new
config var/log/maillog.new
config var/log/messages.new
config var/log/secure.new
config var/log/syslog.new
# Remove any leftover empty files:
rm -f var/log/cron.new
rm -f var/log/debug.new
rm -f var/log/maillog.new
rm -f var/log/messages.new
rm -f var/log/secure.new
rm -f var/log/syslog.new