##// END OF EJS Templates
fixes...
fixes - replaced backticks with $() - enhanced iptables fix - more escape fixes thx to shellcheck.net (no sponsor just a nice page) - if-conditions (!-z equals -n) - if piping find in xargs - use -print0 | -0 (shellcheck.net) - added selecting mmc dev 0 in uboot.mkimg

Fichier de la dernière révision:

r338:5dd9ea36ae5f
r338:5dd9ea36ae5f
Show More
30-security.sh
29 lines | 823 B | application/x-sh | BashLexer
#
# Setup users and security settings
#
# Load utility functions
. ./functions.sh
# Generate crypt(3) password string
ENCRYPTED_PASSWORD=$(mkpasswd -m sha-512 "${PASSWORD}")
ENCRYPTED_USER_PASSWORD=$(mkpasswd -m sha-512 "${USER_PASSWORD}")
# Setup default user
if [ "$ENABLE_USER" = true ] ; then
chroot_exec adduser --gecos $USER_NAME --add_extra_groups --disabled-password $USER_NAME
chroot_exec usermod -a -G sudo -p "${ENCRYPTED_USER_PASSWORD}" $USER_NAME
fi
# Setup root password or not
if [ "$ENABLE_ROOT" = true ] ; then
chroot_exec usermod -p "${ENCRYPTED_PASSWORD}" root
else
# Set no root password to disable root login
chroot_exec usermod -p \'!\' root
fi
# Enable serial console systemd style
if [ "$ENABLE_CONSOLE" = true ] ; then
chroot_exec systemctl enable serial-getty\@ttyAMA0.service
fi