mirror of
git://slackware.nl/current.git
synced 2024-12-26 09:58:59 +01:00
efc2c592c6
a/less-551-x86_64-1.txz: Upgraded. l/babl-0.1.66-x86_64-1.txz: Upgraded. xap/gimp-2.10.12-x86_64-1.txz: Upgraded. testing/packages/mesa-19.1.0-x86_64-1.txz: Added.
17 lines
596 B
Bash
17 lines
596 B
Bash
#!/bin/sh
|
|
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...
|
|
}
|
|
# Don't mess with /etc/drirc. Mesa now installs the defaults as
|
|
# /usr/share/drirc.d/00-mesa-defaults.conf. We won't protect that
|
|
# as a .new file as it shouldn't be modified. Create /etc/drirc if
|
|
# you need local overrides.
|
|
#config etc/drirc.new
|