You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
679 B
27 lines
679 B
#!/bin/sh
|
|
config() {
|
|
NEW="$1"
|
|
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
|
ORIGMD5="$2"
|
|
# 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
|
|
elif [ "$ORIGMD5" ] && [ "$(cat $OLD | md5sum)" = "$ORIGMD5 -" ]; then
|
|
mv $OLD $OLD.orig
|
|
mv $NEW $OLD
|
|
fi
|
|
# Otherwise, we leave the .new copy for the admin to consider...
|
|
}
|
|
|
|
rmconfig() {
|
|
CFG="$1"
|
|
ORIGMD5="$2"
|
|
if [ -r $CFG ] && [ "$(cat $CFG | md5sum)" = "$ORIGMD5 -" ]; then
|
|
mv $CFG $CFG.orig
|
|
fi
|
|
}
|
|
|
|
rmconfig etc/asound.conf 94423887ed53ea0c17db9f9aeb2a40a6
|
|
|
|
|