diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-10-15 21:03:30 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-10-15 21:03:30 +0000 |
commit | 8612d336918b408fd3abd844ccb8189f0d64acc5 (patch) | |
tree | dd043a8580746d6ee54912206a873228401c12f7 /package/base-files/default/etc/init.d/telnet | |
parent | 6f8a93af7ef4eafdd3d6f678398e6f5df2a5560d (diff) | |
download | upstream-8612d336918b408fd3abd844ccb8189f0d64acc5.tar.gz upstream-8612d336918b408fd3abd844ccb8189f0d64acc5.tar.bz2 upstream-8612d336918b408fd3abd844ccb8189f0d64acc5.zip |
init script cleanup, use /etc/rc.d/ for enabled scripts, /etc/init.d/<pkgname> (enable|disable) manages symlinks
SVN-Revision: 5128
Diffstat (limited to 'package/base-files/default/etc/init.d/telnet')
-rwxr-xr-x | package/base-files/default/etc/init.d/telnet | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/package/base-files/default/etc/init.d/telnet b/package/base-files/default/etc/init.d/telnet new file mode 100755 index 0000000000..228eac2b62 --- /dev/null +++ b/package/base-files/default/etc/init.d/telnet @@ -0,0 +1,10 @@ +#!/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 +} |