blob: 14384c3330e853cc7ca757d08e8360e5565e823a (
plain)
1
2
3
4
5
6
7
8
9
|
post_upgrade() {
grpck -r >/dev/null 2>&1
if [ $? -eq 2 ]; then
printf '%s\n' \
"==> Warning: /etc/group or /etc/gshadow are inconsistent." \
" Run 'grpck' to correct this."
fi
return 0
}
|