10 lines
136 B
Plaintext
10 lines
136 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# /etc/cron/daily/pwck: verify integrity of password and group files
|
||
|
#
|
||
|
|
||
|
/usr/sbin/pwck -r
|
||
|
/usr/sbin/grpck -r
|
||
|
|
||
|
# End of file
|