From 81ba726e111109f4af4ad769c0fa719d36b2aead Mon Sep 17 00:00:00 2001 From: Marco Bonetti Date: Sat, 5 Feb 2011 11:39:33 -0600 Subject: network/greenbone-security-assistant: Updated for version 1.0.3. Signed-off-by: Robby Workman --- network/greenbone-security-assistant/doinst.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'network/greenbone-security-assistant/doinst.sh') diff --git a/network/greenbone-security-assistant/doinst.sh b/network/greenbone-security-assistant/doinst.sh index 42955bb4c9..07735821f2 100644 --- a/network/greenbone-security-assistant/doinst.sh +++ b/network/greenbone-security-assistant/doinst.sh @@ -1,10 +1,10 @@ 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 # toss the redundant copy + 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... -- cgit v1.2.3