core/shadow/shadow.install

11 lines
216 B
Plaintext
Raw Normal View History

2010-03-13 23:25:19 +08:00
post_upgrade() {
grpck -r >/dev/null 2>&1
2010-03-13 23:25:19 +08:00
if [ $? -eq 2 ]; then
printf '%s\n' \
"==> Warning: /etc/group or /etc/gshadow are inconsistent." \
" Run 'grpck' to correct this."
2010-03-13 23:25:19 +08:00
fi
return 0
}