Installing of login.defs, login.access, limits, and /etc/default/useradd

are now performed before attempting to run pwconv
This commit is contained in:
2017-10-17 15:47:09 -05:00
parent 4ce0021784
commit 585826bc5f
2 changed files with 16 additions and 16 deletions

View File

@@ -7,6 +7,21 @@ case $1 in
exit 0
;;
postinst)
if [ ! -f ${TARGET}/etc/login.defs ]; then
cp ${TARGET}/usr/share/shadow/login.defs ${TARGET}/etc/login.defs
fi
if [ ! -f ${TARGET}/etc/login.access ]; then
cp ${TARGET}/usr/share/shadow/login.access \
${TARGET}/etc/login.access
fi
if [ ! -f ${TARGET}/etc/limits ]; then
cp ${TARGET}/usr/share/shadow/limits ${TARGET}/etc/limits
fi
if [ ! -f ${TARGET}/etc/default/useradd ]; then
cp ${TARGET}/usr/share/shadow/useradd.default \
${TARGET}/etc/default/useradd
fi
if [[ ${TARGET} ]]; then
if [ ! -f ${TARGET}/etc/shadow ]; then
echo "Converting /etc/passwd to shadow for ${TARGET}"
@@ -28,21 +43,6 @@ case $1 in
grpconv
fi
fi
if [ ! -f ${TARGET}/etc/login.defs ]; then
cp ${TARGET}/usr/share/shadow/login.defs ${TARGET}/etc/default/login.defs
fi
if [ ! -f ${TARGET}/etc/login.access ]; then
cp ${TARGET}/usr/share/shadow/login.access \
${TARGET}/etc/default/login.access
fi
if [ ! -f ${TARGET}/etc/limits ]; then
cp ${TARGET}/usr/share/shadow/limits ${TARGET}/etc/limits
fi
if [ ! -f ${TARGET}/etc/default/useradd ]; then
cp ${TARGET}/usr/share/shadow/useradd.default \
${TARGET}/etc/default/useradd
fi
;;
prerm)
exit 0