diff options
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 |