summaryrefslogtreecommitdiffstats
path: root/src.etc/init.d/telnetd
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2014-06-04 23:08:41 (EDT)
committer P. J. McDermott <pj@pehjota.net>2014-06-04 23:08:41 (EDT)
commit9de16d22b0ac3cbb74793faa913db889d8151ee5 (patch)
tree0f6ed6fe2701368c036c0da9e72be362963d68b6 /src.etc/init.d/telnetd
parent79d474a5fdc0ea8b9e05f5b68567dbbe9086e4ca (diff)
parentb98d2d2ad1e341a6493fcd5531d605e8427665ca (diff)
Merge branch 'feature/init-system-improvements'.
Diffstat (limited to 'src.etc/init.d/telnetd')
-rwxr-xr-xsrc.etc/init.d/telnetd33
1 files changed, 9 insertions, 24 deletions
diff --git a/src.etc/init.d/telnetd b/src.etc/init.d/telnetd
index 0f51046..98f668d 100755
--- a/src.etc/init.d/telnetd
+++ b/src.etc/init.d/telnetd
@@ -1,32 +1,17 @@
-#!/bin/sh
+#!/bin/sh /etc/rc.common
+
+START='50'
+STOP='60'
start()
{
- printf 'Starting telnetd... '
- start-stop-daemon -S -q -n telnetd -x /usr/sbin/telnetd
- printf 'done.\n'
+ log 'Starting telnetd'
+ start-stop-daemon -S -q -p /var/run/telnetd.pid -m \
+ -x /usr/sbin/telnetd -b -- -F
}
stop()
{
- printf 'Stopping telnetd... '
- start-stop-daemon -K -q -n telnetd
- printf 'done.\n'
+ log 'Stopping telnetd'
+ start-stop-daemon -K -q -p /var/run/telnetd.pid
}
-
-case "${1}" in
- start)
- start
- ;;
- stop)
- stop
- ;;
- restart)
- stop
- start
- ;;
- *)
- printf 'Usage: %s {start|stop|restart}\n' "${0}" >&2
- exit 1
- ;;
-esac