From e57f37f3c1d9976a6eb1db3388507589b29e7836 Mon Sep 17 00:00:00 2001 From: Menno Duursma Date: Thu, 13 May 2010 00:39:46 +0200 Subject: system/cdcopy: Updated for version 0.0.7 --- system/cdcopy/doinst.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'system/cdcopy/doinst.sh') 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 -- cgit v1.2.3