summaryrefslogtreecommitdiffstats
path: root/openwrt/package/base-files
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-01-08 18:10:40 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-01-08 18:10:40 +0000
commitcc74ba9c397335cac270cc711d49a4defaa774c1 (patch)
treea4e29aac737763f96e5e9e06b2ba84bb8488b315 /openwrt/package/base-files
parent432a7e7be9d2379beb17cc936993b22595814fb6 (diff)
Merged enhancements submitted by Stereo, thanks, closes #188 and #189
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2863 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/base-files')
-rwxr-xr-xopenwrt/package/base-files/default/etc/init.d/S50telnet2
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/package/base-files/default/etc/init.d/S50telnet b/openwrt/package/base-files/default/etc/init.d/S50telnet
index 599c3540e..e7d4d3677 100755
--- a/openwrt/package/base-files/default/etc/init.d/S50telnet
+++ b/openwrt/package/base-files/default/etc/init.d/S50telnet
@@ -1,2 +1,2 @@
#!/bin/sh
-telnetd -l /bin/login
+if awk -F: '/^root:/ && $2 !~ /\*/ {exit 1}' /etc/passwd 2>/dev/null || test $FAILSAFE; then telnetd -l /bin/login; fi