core/shadow/shadow.install

9 lines
168 B
Plaintext
Raw Normal View History

2010-03-13 23:25:19 +08:00
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
}