Commit c32915cd authored by Alessandro Rubini's avatar Alessandro Rubini

trivial bugfix for password setup

I already fixed that, but likely I made an error in "git rebase -i" before
pushing to master.
Signed-off-by: Alessandro Rubini's avatarAlessandro Rubini <rubini@gnudd.com>
parent 40be7948
......@@ -45,7 +45,7 @@ fi
# Root password
passwd=""
if [ ! -z "$CONFIG_ROOT_PWD_CLEAR" ]; then
passwd=$(mkpasswd --method=md5 "$CONFIG_ROOT_PWD_CLEAR")
passwd=$(/wr/bin/mkpasswd --method=md5 "$CONFIG_ROOT_PWD_CLEAR")
fi
if [ ! -z "$CONFIG_ROOT_PWD_CYPHER" ]; then
passwd="$CONFIG_ROOT_PWD_CYPHER"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment