summaryrefslogtreecommitdiffstats
path: root/system/cdcopy/doinst.sh
diff options
context:
space:
mode:
Diffstat (limited to 'system/cdcopy/doinst.sh')
-rw-r--r--system/cdcopy/doinst.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/system/cdcopy/doinst.sh b/system/cdcopy/doinst.sh
index 86513b326d..1394e73287 100644
--- a/system/cdcopy/doinst.sh
+++ b/system/cdcopy/doinst.sh
@@ -1,15 +1,14 @@
config() {
NEW="$1"
- OLD="`dirname $NEW`/`basename $NEW .new`"
+ 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
+ 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/cdcopy.conf.new