2000-03-10 14:53:23 +03:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2002-03-22 07:33:57 +03:00
|
|
|
# $NetBSD: pwcheck,v 1.4 2002/03/22 04:33:59 thorpej Exp $
|
2000-03-10 14:53:23 +03:00
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: pwcheck
|
2000-07-26 04:11:48 +04:00
|
|
|
# REQUIRE: mountcritremote syslogd
|
2002-03-22 07:33:57 +03:00
|
|
|
# BEFORE: DAEMON
|
2000-03-10 14:53:23 +03:00
|
|
|
|
|
|
|
. /etc/rc.subr
|
|
|
|
|
|
|
|
name="pwcheck"
|
|
|
|
start_cmd="pwcheck_start"
|
|
|
|
stop_cmd=":"
|
|
|
|
|
|
|
|
pwcheck_start()
|
|
|
|
{
|
|
|
|
# check the password temp/lock file
|
|
|
|
#
|
|
|
|
if [ -f /etc/ptmp ]; then
|
|
|
|
logger -s -p auth.err \
|
|
|
|
"password file may be incorrect -- /etc/ptmp exists"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2000-05-13 12:45:06 +04:00
|
|
|
load_rc_config $name
|
2000-03-10 14:53:23 +03:00
|
|
|
run_rc_command "$1"
|