summaryrefslogtreecommitdiffstats
path: root/network/openvas-administrator/doinst.sh
diff options
context:
space:
mode:
Diffstat (limited to 'network/openvas-administrator/doinst.sh')
-rw-r--r--network/openvas-administrator/doinst.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/network/openvas-administrator/doinst.sh b/network/openvas-administrator/doinst.sh
index 7a0957856f..15a5b9b350 100644
--- a/network/openvas-administrator/doinst.sh
+++ b/network/openvas-administrator/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...