Anonymous - 2011-11-28

Originally posted by: batori.peter (code.google.com)

I think the reason is a little bug in file /usr/share/www/cgi-bin/admin.cgi:

Incorrect code:
set_admin_password(){
...
    echo root:${1} | chpasswd --md5 > /dev/null                           
...
}

Correct code:
set_admin_password(){
...
    echo root:${1} | chpasswd -m > /dev/null                           
...
}

Here is a workaround: https://code.google.com/p/snake-os/issues/detail?id=213

Or use "snake" as SSH/Telnet password.

 

Related

Tickets: #213