24 lines
632 B
Bash
24 lines
632 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/gnu-apl.d/keyboard1.txt.new
|
|
config etc/gnu-apl.d/parallel_thresholds.new
|
|
config etc/gnu-apl.d/preferences.new
|
|
|
|
if [ -x /usr/bin/install-info -a -d usr/info ]; then
|
|
( cd usr/info
|
|
rm -f dir
|
|
for i in *.info*; do /usr/bin/install-info $i dir 2>/dev/null; done
|
|
)
|
|
fi
|