mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-11 11:37:31 +02:00
86697678e9
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@139 3c298f89-4303-0410-b956-a3cf2f4a3e73
30 lines
552 B
Bash
Executable File
30 lines
552 B
Bash
Executable File
#!/bin/sh
|
|
echo
|
|
mkdir -p /etc/dropbear
|
|
[ ! -f /etc/dropbear/dropbear_dss_host_key ] && {
|
|
/tmp/dropbearkey -t dss -f /etc/dropbear/dropbear_dss_host_key
|
|
}
|
|
rm /tmp/dropbearkey
|
|
[ ! -f /etc/passwd ] && {
|
|
cat > /etc/passwd << EOF
|
|
root::0:0:root:/tmp:/bin/ash
|
|
EOF
|
|
cat > /etc/shells << EOF
|
|
/bin/ash
|
|
EOF
|
|
cat > /etc/group << EOF
|
|
root:*:0:
|
|
EOF
|
|
passwd
|
|
}
|
|
|
|
cat << EOF
|
|
==========================================
|
|
dropbear is now configured to run on boot.
|
|
==========================================
|
|
To start it now, run the following command:
|
|
|
|
/usr/bin/dropbear
|
|
|
|
EOF
|