blob: 50843e3335e2e834d2c3da84902f8046ec97b40c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh /etc/rc.common
START='50'
STOP='60'
start()
{
log 'Starting telnetd'
start-stop-daemon -S -q -n telnetd -x /usr/sbin/telnetd
}
stop()
{
log 'Stopping telnetd'
start-stop-daemon -K -q -n telnetd
}
|