blob: 54c06904ff5b50e0d5434b78b071c9c78c76ef75 (
plain) (
tree)
|
|
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...
}
# Process config files in etc/grub.d/:
for file in etc/grub.d/*.new ; do
config $file
done
config etc/default/grub.new
|