add packages_10.03.2 in preparation for the 10.03.2 interim release
[10.03/packages.git] / net / tftp-hpa / files / tftpd-hpa.init
1 #!/bin/sh /etc/rc.common
2
3 START=50
4
5 RUN_D=/var/tftpd-hpa
6
7 start() {
8         [ -d $RUN_D ] || mkdir -p $RUN_D
9         tftpd-hpa -l -s $RUN_D
10 }
11
12 stop() {
13         killall tftpd-hpa
14 }