Add network support to initscripts
[qi-bootmenu-system/guyou.git] / rootfs-overlay / etc / init.d / dropbear
blob698af13694d79226f5f1111377106ec47b64c3d8
1 #!/bin/sh
3 case "$1" in
4 start)
5 dropbear
6 ;;
7 stop)
8 killall dropbear
9 ;;
10 restart)
11 $0 stop
12 $0 start
15 echo "Usage: $0 {start|stop|restart}"
16 exit 1
18 esac
20 exit 0