slackbuilds_ponce/multimedia/minidlna/doinst.sh
Niels Horn b3de66000f multimedia/minidlna: Added (mini DLNA server)
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
2011-10-11 21:20:30 -05:00

14 lines
377 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/minidlna.conf.new