11 lines
311 B
Text
11 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
|