diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2011-03-14 17:13:54 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-03-14 17:13:54 -0500 |
commit | a271489a6be113e1eaf3ada6b9368441ded9bf61 (patch) | |
tree | 2dfde3cecaf4eba672af343de83763daed34904d /network/suphp/doinst.sh | |
parent | 7f8e2df2ae9c1e7f8460fcdbd1b7b4c0ac3204cf (diff) | |
download | slackbuilds-a271489a6be113e1eaf3ada6b9368441ded9bf61.tar.gz |
network/suphp: Removed (unmaintained)
Reference: http://lists.slackbuilds.org/pipermail/slackbuilds-users/2010-October/006570.html
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/suphp/doinst.sh')
-rw-r--r-- | network/suphp/doinst.sh | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/network/suphp/doinst.sh b/network/suphp/doinst.sh deleted file mode 100644 index 58cc2362b2..0000000000 --- a/network/suphp/doinst.sh +++ /dev/null @@ -1,16 +0,0 @@ -config() { - NEW="$1" - 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 - rm $NEW - fi - # Otherwise, we leave the .new copy for the admin to consider... -} - -config etc/httpd/mod_suphp.conf.new -config etc/httpd/suphp.conf.new - |