diff options
author | Menno Duursma <druiloor@zonnet.nl> | 2010-05-11 22:25:46 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 22:25:46 +0200 |
commit | b7ae880ff6b94898f177451fa114835c071caed3 (patch) | |
tree | f9e4f4b9810998398303cae3f13a8870b44c2430 /network/suphp/doinst.sh | |
parent | 4b92df5b32dc4c10d297fb9e7545b86d040f4f4d (diff) | |
download | slackbuilds-b7ae880ff6b94898f177451fa114835c071caed3.tar.gz |
network/suphp: Updated for version 0.6.3
Diffstat (limited to 'network/suphp/doinst.sh')
-rw-r--r-- | network/suphp/doinst.sh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/network/suphp/doinst.sh b/network/suphp/doinst.sh index 3f513b956f..e796ae0a4e 100644 --- a/network/suphp/doinst.sh +++ b/network/suphp/doinst.sh @@ -1,16 +1,15 @@ 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... } -# Add a sample config-file, if only for documentation -config etc/apache/suphp.conf.new +config etc/httpd/suphp.conf.new |