]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - src/initscripts/init.d/tftpd
Load libata prior udev at installer because some SATA doesnt autoload it
[people/pmueller/ipfire-2.x.git] / src / initscripts / init.d / tftpd
1 #!/bin/sh
2 ########################################################################
3 # Begin $rc_base/init.d/tftpd
4 #
5 # Description : This script controls the tftpd server
6 #
7 # Authors : Michael Tremer <ms@ipfire.org>
8 #
9 # Version : 01.00
10 #
11 # Notes :
12 #
13 ########################################################################
14
15 . /etc/sysconfig/rc
16 . ${rc_functions}
17
18 case "${1}" in
19 start)
20 boot_mesg "Starting tftpd-hpa Server..."
21 loadproc /usr/sbin/tftpd -l -s /var/tftpboot
22 ;;
23
24 stop)
25 boot_mesg "Stopping tftpd-hpa Server..."
26 killproc /usr/sbin/tftpd
27 ;;
28
29 restart)
30 ${0} stop
31 sleep 1
32 ${0} start
33 ;;
34
35 status)
36 statusproc /usr/sbin/tftpd
37 ;;
38
39 *)
40 echo "Usage: ${0} {start|stop|restart|status}"
41 exit 1
42 ;;
43 esac
44
45 # End $rc_base/init.d/tftpd