9 lines
138 B
Plaintext
9 lines
138 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# cron.daily script to check integrity of the password and group files
|
||
|
|
||
|
test -f /usr/sbin/pwck || exit 0
|
||
|
|
||
|
pwck -q -r
|
||
|
grpck -r
|