##// END OF EJS Templates
Dropbear initramfs...
Dropbear initramfs - Enable dropbear in initramfs with cryptfs_cropbear=true - dropbear initramfs supports static and dyn. ip - dropbear uses provided ip_config NET_* - bluetooth with serial improved - ipv6 legacy firewalling - add cleanup to videocore - improved apt-cacher-ng detection

Fichier de la dernière révision:

r501:3c3d6ac60789
r501:3c3d6ac60789
Show More
30-security.sh
24 lines | 687 B | application/x-sh | BashLexer
Filip Pytloun
Refactor: split bootstrap actions and allow custom
r56 #
# Setup users and security settings
#
Jan Wagner
spliting more files, fix-uboot, fix-fbturbo, fix-locale
r67 # Load utility functions
Filip Pytloun
Refactor: split bootstrap actions and allow custom
r56 . ./functions.sh
# Generate crypt(3) password string
Unknown
fixes...
r338 ENCRYPTED_PASSWORD=$(mkpasswd -m sha-512 "${PASSWORD}")
ENCRYPTED_USER_PASSWORD=$(mkpasswd -m sha-512 "${USER_PASSWORD}")
Filip Pytloun
Refactor: split bootstrap actions and allow custom
r56
Jan Wagner
comment-cleanup, net-cleanup, size-calc-fix, split-more, menuconfig
r71 # Setup default user
Filip Pytloun
Refactor: split bootstrap actions and allow custom
r56 if [ "$ENABLE_USER" = true ] ; then
Unknown
fixes...
r420 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"
Filip Pytloun
Refactor: split bootstrap actions and allow custom
r56 fi
Jan Wagner
comment-cleanup, net-cleanup, size-calc-fix, split-more, menuconfig
r71 # Setup root password or not
Jan Wagner
Added: KERNEL_SRCDIR, path-checks, code-cleanup
r72 if [ "$ENABLE_ROOT" = true ] ; then
Filip Pytloun
Refactor: split bootstrap actions and allow custom
r56 chroot_exec usermod -p "${ENCRYPTED_PASSWORD}" root
else
Jan Wagner
code cleanup and even more spliting
r70 # Set no root password to disable root login
Filip Pytloun
Refactor: split bootstrap actions and allow custom
r56 chroot_exec usermod -p \'!\' root
fi