move busybox init scripts from base-files into the busybox package and make them...
[openwrt/svn-archive/archive.git] / package / busybox / files / telnet
diff --git a/package/busybox/files/telnet b/package/busybox/files/telnet
new file mode 100755 (executable)
index 0000000..c994c60
--- /dev/null
@@ -0,0 +1,10 @@
+#!/bin/sh /etc/rc.common
+# Copyright (C) 2006 OpenWrt.org
+
+start() {
+       if awk -F: '/^root:/ && $2 !~ /\!/ {exit 1}' /etc/passwd 2>/dev/null && [ -x /usr/sbin/dropbear ]; then telnetd -l /bin/login; fi
+}
+
+stop() {
+       killall telnetd
+}