shadow.install 215 B

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