move busybox init scripts from base-files into the busybox package and make them...
[openwrt/staging/jogo.git] / package / base-files / default / etc / init.d / telnet
diff --git a/package/base-files/default/etc/init.d/telnet b/package/base-files/default/etc/init.d/telnet
deleted file mode 100755 (executable)
index c994c60..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/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
-}