1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-25 21:07:40 +00:00
freebsd-ports/japanese/ebnetd/files/ndtpd.sh.sample
Satoshi Asami 7810fb706b Upgrade to ndtpd-2.3.2 and eb-2.3.2. PR was for ndtpd-2.3.1 and
eb-2.3, I changed the versions and recalculated the checksums.

Also, ndtpd/patches/patch-aa (by me) is for quieting ndtpd somewhat so
it won't leave dozens of lines to /var/log/messages every time someone
looks up a word, and eb/patches/patch-aa (by Kasahara-san, the
original author) is for changing the shared lib versions.
ndtpd/Makefile's LIB_DEPENDS was adjusted accordingly.

PR:		12130
Submitted by:	maintainer
Reviewed (my changes) by: maintainer
1999-08-19 10:50:30 +00:00

16 lines
361 B
Bash

#!/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