summaryrefslogtreecommitdiff
path: root/testing/shadow/shadow.install
blob: e990bfe3925bc080a8d27bc40b923926c4b35007 (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 inconsistant." \
      "    Run 'grpck' to correct this."
  fi
  return 0
}