]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - libexec/rc/rc.d/pwcheck
libarchive: merge security fix from vendor branch
[FreeBSD/FreeBSD.git] / libexec / rc / rc.d / pwcheck
1 #!/bin/sh
2 #
3 #
4
5 # PROVIDE: pwcheck
6 # REQUIRE: mountcritremote syslogd
7 # BEFORE:  DAEMON
8
9 . /etc/rc.subr
10
11 name="pwcheck"
12 desc="Check password file correctness"
13 start_cmd="pwcheck_start"
14 stop_cmd=":"
15
16 pwcheck_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
26 load_rc_config $name
27 run_rc_command "$1"