diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2000-04-05 13:42:48 +0000 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2000-04-05 13:42:48 +0000 |
commit | 2f6a866b8b2efd62ed467871829b0d0dfc360843 (patch) | |
tree | 92c43d4c80a378d2085f0e418b33d00f03ac409a /etc/security | |
parent | 2bf92db1cd1236f211745bd6b4b0e18a1ba665a0 (diff) | |
download | FreeBSD-src-2f6a866b8b2efd62ed467871829b0d0dfc360843.zip FreeBSD-src-2f6a866b8b2efd62ed467871829b0d0dfc360843.tar.gz |
Do not report blocked out NIS password entries as passwordless.
Submitted by: "Sean O'Connell" <sean@stat.Duke.EDU>
Diffstat (limited to 'etc/security')
-rw-r--r-- | etc/security | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/security b/etc/security index 96ffc28..c786713 100644 --- a/etc/security +++ b/etc/security @@ -57,7 +57,7 @@ awk -F: '$3==0 {print $1,$3}' /etc/master.passwd separator echo "checking for passwordless accounts:" -awk -F: 'NF > 1 && $1 !~ /^[#+]/ && $2=="" {print $0}' /etc/master.passwd +awk -F: 'NF > 1 && $1 !~ /^[#+-]/ && $2=="" {print $0}' /etc/master.passwd # Show denied packets # |