summaryrefslogtreecommitdiffstats
path: root/network/greenbone-security-assistant/doinst.sh
diff options
context:
space:
mode:
author Marco Bonetti2011-02-05 18:39:33 +0100
committer Robby Workman2011-02-05 18:39:33 +0100
commit81ba726e111109f4af4ad769c0fa719d36b2aead (patch)
tree039b1f07d1fccb74f75b779827e721207b0cf24d /network/greenbone-security-assistant/doinst.sh
parenta085ddef0f8055da064a8c337a899dfeb7119b18 (diff)
downloadslackbuilds-81ba726e111109f4af4ad769c0fa719d36b2aead.tar.gz
network/greenbone-security-assistant: Updated for version 1.0.3.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/greenbone-security-assistant/doinst.sh')
-rw-r--r--network/greenbone-security-assistant/doinst.sh4
1 files changed, 2 insertions, 2 deletions
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...