fix displayed name in init script help text
[openwrt.git] / package / base-files / default / etc / init.d / S50telnet
index 599c354..228eac2 100755 (executable)
@@ -1,2 +1,10 @@
-#!/bin/sh
-telnetd -l /bin/login
+#!/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.022786 seconds and 4 git commands to generate.