4
0

fixed generation of initial password

This commit is contained in:
Benjamin Böhmke 2019-12-15 17:48:38 +01:00
parent f862f767be
commit f6edd86471

View File

@ -196,8 +196,10 @@ if [ ! -f /data/etc/hostname ]; then
fi fi
# root password # root password
root_pw=\$(mkpasswd -m sha-512 -s "${DEFAULT_ROOT_PASSWORD}") if [ ! -f /data/etc/shadow ]; then
echo "root:\${root_pw}:0:0:::::" > /data/etc/shadow root_pw=\$(mkpasswd -m sha-512 -s "${DEFAULT_ROOT_PASSWORD}")
echo "root:\${root_pw}:0:0:::::" > /data/etc/shadow
fi
# interface # interface
mkdir -p /data/etc/network mkdir -p /data/etc/network