add protection for bridging interface changes
[openwrt.git] / package / base-files / default / etc / init.d / S50telnet
index e7d4d36..228eac2 100755 (executable)
@@ -1,2 +1,10 @@
-#!/bin/sh
-if awk -F: '/^root:/ && $2 !~ /\*/ {exit 1}' /etc/passwd 2>/dev/null || test $FAILSAFE; then telnetd -l /bin/login; fi
+#!/bin/sh /etc/rc.common
+# Copyright (C) 2006 OpenWrt.org
+
+start() {
+       if awk -F: '/^root:/ && $2 !~ /\!/ {exit 1}' /etc/passwd 2>/dev/null; then telnetd -l /bin/login; fi
+}
+
+stop() {
+       killall telnetd
+}
This page took 0.021402 seconds and 4 git commands to generate.