##// END OF EJS Templates
Readme with tables...
Readme with tables - Fixes - Updates - Reorder - including prior pr we got one fully synced combo in the order of script options in rip23-gen-image.sh,readme.md,rpi3buster-complete.config - using tables for better overview and much smaller file size (dropped 573 lines) -dropping chineese translation as its outdated

Fichier de la dernière révision:

r732:4551fcf06923
r733:30010dc2bab6
Show More
30-security.sh
24 lines | 692 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 "${ROOT_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