diff options
author | Olli Hauer <ohauer@FreeBSD.org> | 2012-01-01 19:30:58 +0000 |
---|---|---|
committer | Olli Hauer <ohauer@FreeBSD.org> | 2012-01-01 19:30:58 +0000 |
commit | 2c96f26a12ae4d0474c70d61c6cab483c2865f49 (patch) | |
tree | 3d7591c78a947273efae6c582aacdca524e69528 /www/apache13-modssl/files/patch-apachectl | |
parent | - Move all the fetching into fetch phase (diff) |
- remove apache13 and ports depending on apache13 from portstree
( EXPIRATION_DATE=2012-01-01 )
with hat apache@
Notes
Notes:
svn path=/head/; revision=288378
Diffstat (limited to 'www/apache13-modssl/files/patch-apachectl')
-rw-r--r-- | www/apache13-modssl/files/patch-apachectl | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/www/apache13-modssl/files/patch-apachectl b/www/apache13-modssl/files/patch-apachectl deleted file mode 100644 index 0eb64d59af3c..000000000000 --- a/www/apache13-modssl/files/patch-apachectl +++ /dev/null @@ -1,45 +0,0 @@ ---- src/support/apachectl.orig Sun Oct 26 20:53:07 2003 -+++ src/support/apachectl Mon Oct 27 22:27:30 2003 -@@ -105,14 +105,14 @@ - restart) - if [ $RUNNING -eq 0 ]; then - echo "$0 $ARG: httpd not running, trying to start" -- if $HTTPD ; then -+ if $HTTPD -DSSL ; then - echo "$0 $ARG: httpd started" - else - echo "$0 $ARG: httpd could not be started" - ERROR=5 - fi - else -- if $HTTPD -t >/dev/null 2>&1; then -+ if $HTTPD -DSSL -t >/dev/null 2>&1; then - if kill -HUP $PID ; then - echo "$0 $ARG: httpd restarted" - else -@@ -129,14 +129,14 @@ - graceful) - if [ $RUNNING -eq 0 ]; then - echo "$0 $ARG: httpd not running, trying to start" -- if $HTTPD ; then -+ if $HTTPD -DSSL ; then - echo "$0 $ARG: httpd started" - else - echo "$0 $ARG: httpd could not be started" - ERROR=5 - fi - else -- if $HTTPD -t >/dev/null 2>&1; then -+ if $HTTPD -DSSL -t >/dev/null 2>&1; then - if kill -USR1 $PID ; then - echo "$0 $ARG: httpd gracefully restarted" - else -@@ -157,7 +157,7 @@ - $LYNX $STATUSURL - ;; - configtest) -- if $HTTPD -t; then -+ if $HTTPD -DSSL -t; then - : - else - ERROR=8 |