##// END OF EJS Templates
Added: KERNEL_SRCDIR, path-checks, code-cleanup
Added: KERNEL_SRCDIR, path-checks, code-cleanup

Fichier de la dernière révision:

r72:9d88180e4b8d
r72:9d88180e4b8d
Show More
30-security.sh
32 lines | 855 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
ENCRYPTED_PASSWORD=`mkpasswd -m sha-512 ${PASSWORD}`
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
chroot_exec adduser --gecos pi --add_extra_groups --disabled-password pi
chroot_exec usermod -a -G sudo -p "${ENCRYPTED_PASSWORD}" pi
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
Jan Wagner
Added: KERNEL_SRCDIR, path-checks, code-cleanup
r72 if [ "$ENABLE_ROOT_SSH" = true ] ; then
Jan Wagner
code cleanup and even more spliting
r70 sed -i "s|[#]*PermitRootLogin.*|PermitRootLogin yes|g" $R/etc/ssh/sshd_config
Filip Pytloun
Refactor: split bootstrap actions and allow custom
r56 fi
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
# Enable serial console systemd style
if [ "$ENABLE_CONSOLE" = true ] ; then
chroot_exec systemctl enable serial-getty\@ttyAMA0.service
fi