2010-05-12 04:54:28 +08:00
|
|
|
config() {
|
|
|
|
NEW="$1"
|
2010-05-13 06:34:04 +08:00
|
|
|
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
2010-05-12 04:54:28 +08:00
|
|
|
# If there's no config file by that name, mv it over:
|
|
|
|
if [ ! -r $OLD ]; then
|
|
|
|
mv $NEW $OLD
|
2010-05-13 06:34:04 +08:00
|
|
|
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
|
2010-05-12 04:54:28 +08:00
|
|
|
# toss the redundant copy
|
|
|
|
rm $NEW
|
|
|
|
fi
|
|
|
|
# Otherwise, we leave the .new copy for the admin to consider...
|
|
|
|
}
|
|
|
|
|
|
|
|
config etc/biosdisk.conf.new
|
2010-05-13 06:34:04 +08:00
|
|
|
|