lars
6fec846638
comments for development actions added to cbox.sh source local configure scripts examples for local configure scripts added: - set_root_pw - import_authorized_keys
10 lines
311 B
Text
10 lines
311 B
Text
# replace the empty root password of an development cryptobox with a choosen one
|
|
#
|
|
# see misc/custom-configure.d/README for details
|
|
#
|
|
|
|
# set the password to your needs
|
|
NEW_ROOT_PASSWORD=foobar
|
|
|
|
echo "Setting a root password ..."
|
|
echo "root:$NEW_ROOT_PASSWORD" | chroot "$IMAGE_DIR" "$CHROOTSTART" chpasswd root
|