[UP] del shell/rxvt, use arxvt directly.
[arrow.git] / conf_slk120 / rc.d / tftpd
blobcf50452156b3f295322cc1f5d94bc95279058440
1 #!/bin/bash
3 . /etc/rc.conf
4 . /etc/rc.d/functions
6 PID=`pidof -o %PPID /usr/sbin/in.tftpd`
7 case "$1" in
8 start)
9 stat_busy "Starting TFTPD"
10 [ -z "$PID" ] && /usr/sbin/in.tftpd -l -s /tftp
11 if [ $? -gt 0 ]; then
12 stat_fail
13 else
14 add_daemon in.tftpd
15 stat_done
18 stop)
19 stat_busy "Stopping TFTPD"
20 [ ! -z "$PID" ] && kill $PID &> /dev/null
21 if [ $? -gt 0 ]; then
22 stat_fail
23 else
24 rm_daemon in.tftpd
25 stat_done
28 restart)
29 $0 stop
30 $0 start
33 echo "usage: $0 {start|stop|restart}"
34 esac
35 exit 0