2001-06-16 07:16:14 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2002-06-13 22:14:37 +00:00
|
|
|
# $FreeBSD$
|
2001-06-16 07:16:14 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: pwcheck
|
|
|
|
# REQUIRE: mountcritremote syslogd
|
2002-06-13 22:14:37 +00:00
|
|
|
# BEFORE: DAEMON
|
2001-06-16 07:16:14 +00: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
|
|
|
|
}
|
|
|
|
|
|
|
|
load_rc_config $name
|
|
|
|
run_rc_command "$1"
|