xref: /netbsd/etc/rc.d/pwcheck (revision 6550d01e)
1#!/bin/sh
2#
3# $NetBSD: pwcheck,v 1.5 2004/08/13 18:08:03 mycroft Exp $
4#
5
6# PROVIDE: pwcheck
7# REQUIRE: mountcritremote syslogd
8# BEFORE:  DAEMON
9
10$_rc_subr_loaded . /etc/rc.subr
11
12name="pwcheck"
13start_cmd="pwcheck_start"
14stop_cmd=":"
15
16pwcheck_start()
17{
18	#	check the password temp/lock file
19	#
20	if [ -f /etc/ptmp ]; then
21		logger -s -p auth.err \
22		    "password file may be incorrect -- /etc/ptmp exists"
23	fi
24}
25
26load_rc_config $name
27run_rc_command "$1"
28