summaryrefslogtreecommitdiffstats
path: root/abs/core/shadow/shadow.install
blob: c1bd1066ba24d90be171d533b4a2207c9610e58b (plain)
1
2
3
4
5
6
7
8
post_upgrade() {
  grpck -r &>/dev/null
  if [ $? -eq 2 ]; then
    echo "Fixing gshadow file ..."
    while :; do echo "y"; done | grpck &>/dev/null
  fi
  return 0
}