mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 07:37:14 +08:00
9 lines
168 B
Plaintext
9 lines
168 B
Plaintext
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
|
|
}
|