view images/lfs-bootstrap/mnt/build/shadow.sh @ 40:ef471ef37665 draft default tip

Yank reliance on ash.
author Rob Landley <rob@landley.net>
date Sat, 18 Jul 2015 01:39:24 -0500
parents 0bdce741ba83
children
line wrap: on
line source

#!/bin/sh

# Disable the groups program, coreutils provides a better one.

sed -i 's/groups$(EXEEXT) //' src/Makefile.in &&
find man -name Makefile.in -exec sed -i 's/groups\.1 / /' {} \; &&

# Disable Chinese/Korean man pages Man-DB can't format properly.

sed -i -e 's/ ko//' -e 's/ zh_CN zh_TW//' man/Makefile.in &&

# Change default password encryption to something that _doesn't_ limit
# password lengths to 8 characters, and change the user mbox location to
# the "new" one everybody started using back in the 1990's.

sed -i -e 's@#ENCRYPT_METHOD DES@ENCRYPT_METHOD SHA512@' \
       -e 's@/var/spool/mail@/var/mail@' etc/login.defs &&
       
./configure --sysconfdir=/etc --without-nscd &&
make -j $CPUS &&
make install &&
pwconv &&
grpconv