diff options
Diffstat (limited to 'security')
-rw-r--r-- | security/cyrus-sasl/files/sasl_pwcheck.sh | 6 | ||||
-rw-r--r-- | security/pks/files/pksd.sh | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/security/cyrus-sasl/files/sasl_pwcheck.sh b/security/cyrus-sasl/files/sasl_pwcheck.sh index f57d061c591..6415442cfe8 100644 --- a/security/cyrus-sasl/files/sasl_pwcheck.sh +++ b/security/cyrus-sasl/files/sasl_pwcheck.sh @@ -1,13 +1,13 @@ #! /bin/sh # -# $NetBSD: sasl_pwcheck.sh,v 1.6 2002/01/31 21:41:18 jlam Exp $ +# $NetBSD: sasl_pwcheck.sh,v 1.7 2002/02/05 06:04:40 jlam Exp $ # # The pwcheck daemon allows UNIX password authentication with Cyrus SASL. # # PROVIDE: sasl_pwcheck # REQUIRE: DAEMON -if [ -e /etc/rc.subr ] +if [ -f /etc/rc.subr ] then . /etc/rc.subr fi @@ -17,7 +17,7 @@ rcvar="${name}" command="@PREFIX@/sbin/pwcheck" command_args="& sleep 2" -if [ -e /etc/rc.subr ] +if [ -f /etc/rc.subr ] then load_rc_config $name run_rc_command "$1" diff --git a/security/pks/files/pksd.sh b/security/pks/files/pksd.sh index f584ab0708d..3f7c5239bd9 100644 --- a/security/pks/files/pksd.sh +++ b/security/pks/files/pksd.sh @@ -1,11 +1,11 @@ #!/bin/sh # -# $NetBSD: pksd.sh,v 1.5 2001/11/26 07:34:06 jlam Exp $ +# $NetBSD: pksd.sh,v 1.6 2002/02/05 06:04:41 jlam Exp $ # # PROVIDE: pksd # REQUIRE: DAEMON -if [ -e /etc/rc.subr ] +if [ -f /etc/rc.subr ] then . /etc/rc.subr fi @@ -67,7 +67,7 @@ start_precmd=pksd_dbinit start_cmd=pksd_start stop_cmd=pksd_stop -if [ -e /etc/rc.subr ] +if [ -f /etc/rc.subr ] then load_rc_config $name run_rc_command "$1" |