slackbuilds_ponce/system/udevil/doinst.sh
Matteo Bernardini f1d0ad1933 system/udevil: Added (removable devices manager).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
2012-09-08 17:28:29 -05:00

14 lines
382 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/udevil/udevil.conf.new