aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorEnji Cooper <ngie@FreeBSD.org>2015-02-04 10:19:32 +0000
committerEnji Cooper <ngie@FreeBSD.org>2015-02-04 10:19:32 +0000
commit11981695fc234f86e6befc35f68303d49b032d97 (patch)
treefc108276275cac6fae4a218361a5cb55fb1ead87 /etc
parent4025433eb2753baa255b63957b8f47d58eba9bc3 (diff)
downloadsrc-11981695fc234f86e6befc35f68303d49b032d97.tar.gz
src-11981695fc234f86e6befc35f68303d49b032d97.zip
Add the following options to enable/disable several features in the base system
WITHOUT_BOOTPARAMD - bootparamd WITHOUT_BOOTPD - bootpd WITHOUT_FINGER - finger, fingerd WITHOUT_FTP - ftp, ftpd WITHOUT_INETD - inetd WITHOUT_RBOOTD - rbootd WITHOUT_TCP_WRAPPERS - tcpd, et al WITHOUT_TFTP - tftp, tftp-server WITHOUT_TIMED - timed MFC after: 2 weeks Sponsored by: EMC / Isilon Storage Division
Notes
Notes: svn path=/head/; revision=278192
Diffstat (limited to 'etc')
-rw-r--r--etc/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/etc/Makefile b/etc/Makefile
index b27542afce07..4a13abe3342f 100644
--- a/etc/Makefile
+++ b/etc/Makefile
@@ -21,13 +21,11 @@ BIN1= crontab \
dhclient.conf \
disktab \
fbtab \
- ftpusers \
gettytab \
group \
hosts \
hosts.allow \
hosts.equiv \
- inetd.conf \
libalias.conf \
libmap.conf \
login.access \
@@ -101,6 +99,14 @@ BIN1+= snmpd.config
BIN1+= freebsd-update.conf
.endif
+.if ${MK_FTP} != "no"
+BIN1+= ftpusers
+.endif
+
+.if ${MK_INETD} != "no"
+BIN1+= inetd.conf
+.endif
+
.if ${MK_LOCATE} != "no"
BIN1+= ${.CURDIR}/../usr.bin/locate/locate/locate.rc
.endif