aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/default/etc/init.d/telnet
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-11-22 23:06:40 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-11-22 23:06:40 +0000
commitbd8e5fb7db8431d22fad5eb72a2a38c0f1b50f45 (patch)
tree4f7eeed6b793a65cf049eb6505718ac37eedd014 /package/base-files/default/etc/init.d/telnet
parent392966798babed140db8ff7266633d65add2edd6 (diff)
downloadupstream-bd8e5fb7db8431d22fad5eb72a2a38c0f1b50f45.tar.gz
upstream-bd8e5fb7db8431d22fad5eb72a2a38c0f1b50f45.tar.bz2
upstream-bd8e5fb7db8431d22fad5eb72a2a38c0f1b50f45.zip
move busybox init scripts from base-files into the busybox package and make them depend on busybox menuconfig options
SVN-Revision: 5620
Diffstat (limited to 'package/base-files/default/etc/init.d/telnet')
-rwxr-xr-xpackage/base-files/default/etc/init.d/telnet10
1 files changed, 0 insertions, 10 deletions
diff --git a/package/base-files/default/etc/init.d/telnet b/package/base-files/default/etc/init.d/telnet
deleted file mode 100755
index c994c6052f..0000000000
--- a/package/base-files/default/etc/init.d/telnet
+++ /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
-}