Core/shadow/shadow.install
2024-09-07 23:18:11 +08:00

18 lines
319 B
Plaintext

# This is a default template for a post-install scriptlet.
# Uncomment only required functions and remove any functions
# you don't need (and this header).
post_install() {
if [ ! -e etc/gshadow ]; then
/usr/sbin/grpconv
fi
if [ ! -e etc/shadow ]; then
/usr/sbin/pwconv
fi
}
post_upgrade() {
post_install
}