summaryrefslogtreecommitdiffstats
path: root/system/cdcopy/doinst.sh
diff options
context:
space:
mode:
author Menno Duursma <druiloor@zonnet.nl>2010-05-13 00:39:46 +0200
committer Robby Workman <rworkman@slackbuilds.org>2010-05-13 00:39:46 +0200
commite57f37f3c1d9976a6eb1db3388507589b29e7836 (patch)
treeb788344552078a63f7809686ca31fd48dc0bf751 /system/cdcopy/doinst.sh
parentb1932fbddcd03976b3682d0c6a995fca0e7e187e (diff)
downloadslackbuilds-e57f37f3c1d9976a6eb1db3388507589b29e7836.tar.gz
slackbuilds-e57f37f3c1d9976a6eb1db3388507589b29e7836.tar.xz
system/cdcopy: Updated for version 0.0.7
Diffstat (limited to '')
-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