diff options
author | tron <tron> | 2001-02-07 15:08:30 +0000 |
---|---|---|
committer | tron <tron> | 2001-02-07 15:08:30 +0000 |
commit | 540ca6917676364131f99c4535fdd67154a17dc9 (patch) | |
tree | 5ddd4386abe3a7f78f779db9cde5e717b743e6f5 | |
parent | f6d08592210ac790f2635d8d0921a0c133b50f44 (diff) | |
download | pkgsrc-540ca6917676364131f99c4535fdd67154a17dc9.tar.gz |
Fix typo.
-rw-r--r-- | www/apache/files/apache.sh | 4 | ||||
-rw-r--r-- | www/apache6/files/apache.sh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/www/apache/files/apache.sh b/www/apache/files/apache.sh index 80f9eee3270..e3e9c21300f 100644 --- a/www/apache/files/apache.sh +++ b/www/apache/files/apache.sh @@ -1,6 +1,6 @@ #! /bin/sh # -# $NetBSD: apache.sh,v 1.9 2001/02/02 16:39:57 jlam Exp $ +# $NetBSD: apache.sh,v 1.10 2001/02/07 15:08:30 tron Exp $ # # PROVIDE: apache # REQUIRE: DAEMON @@ -30,7 +30,7 @@ then ;; stop) - if [ -a -f ${pidfile} ] + if [ -f ${pidfile} ] then echo "Stopping ${name}." ${ctl_command} ${cmd} > /dev/null diff --git a/www/apache6/files/apache.sh b/www/apache6/files/apache.sh index 50d85d89081..7606b04545a 100644 --- a/www/apache6/files/apache.sh +++ b/www/apache6/files/apache.sh @@ -1,6 +1,6 @@ #! /bin/sh # -# $NetBSD: apache.sh,v 1.5 2001/02/06 10:58:18 itojun Exp $ +# $NetBSD: apache.sh,v 1.6 2001/02/07 15:11:18 tron Exp $ # # PROVIDE: apache # REQUIRE: DAEMON @@ -30,7 +30,7 @@ then ;; stop) - if [ -a -f ${pidfile} ] + if [ -f ${pidfile} ] then echo "Stopping ${name}." ${ctl_command} ${cmd} > /dev/null |