2011-09-23 16:04:25 -06:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
exec 2>&1
|
|
|
|
|
|
|
|
[ -r /etc/passwd ] || echo 'root:x:0:0:root:/tmp:/bin/sh' > /etc/passwd
|
|
|
|
|
|
|
|
# Always do this, in case something else set a root password
|
2012-02-08 10:15:01 -07:00
|
|
|
echo 'root:$1$i/EeZyl6$5C6Z8s0ftEdTKFLUli1wP1' | chpasswd --encrypted
|
2011-09-23 16:04:25 -06:00
|
|
|
|
|
|
|
# Bring up the NIC; this will get us at least a link-local address, and
|
|
|
|
# hopefully a global address with stateless autoconfiguration.
|
|
|
|
ip link set eth0 up
|
|
|
|
|
|
|
|
exec dropbear -r ./rsa.key -E -F
|