summaryrefslogtreecommitdiff
path: root/japanese/ebnetd/files/ndtpd.sh.sample
blob: 17a62fc0aab854c2e7e0177fb0b5cd89d9c4e33a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh -
#
# NDTPD: rc-file for FreeBSD.
#

### NDTPD options: ###
ndtpd_program=@prefix@/sbin/ndtpd	# path to ndtpd.
ndtpd_enable=YES			# Run ndtpd (or NO).
ndtpd_flags=				# Flags to ndtpd (if enabled).
### End of NDTPD options: ###

if [ "x${ndtpd_enable}" = xYES -a -x ${ndtpd_program} ]; then
    echo -n " ndtpd"
    ${ndtpd_program} ${ndtpd_flags}
fi