18 lines
319 B
Plaintext
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
|
|
}
|
|
|