9 lines
173 B
Plaintext
9 lines
173 B
Plaintext
|
# This script enables shadow password and groups.
|
||
|
case "$ACTION" in
|
||
|
post)
|
||
|
if [ -x bin/pwconv && -x bin/grpconv -a "$(id -u)" -eq 0 ]; then
|
||
|
pwconv && grpconv
|
||
|
fi
|
||
|
;;
|
||
|
esac
|