diff options
author | ngie <ngie@FreeBSD.org> | 2015-02-04 10:19:32 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-02-04 10:19:32 +0000 |
commit | 06520f16ddc1b2578445c56c8e6484021f46b872 (patch) | |
tree | fc108276275cac6fae4a218361a5cb55fb1ead87 /etc | |
parent | 7a68cf4e596dc6f95b785e75b92299a43a3d3399 (diff) | |
download | FreeBSD-src-06520f16ddc1b2578445c56c8e6484021f46b872.zip FreeBSD-src-06520f16ddc1b2578445c56c8e6484021f46b872.tar.gz |
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
Diffstat (limited to 'etc')
-rw-r--r-- | etc/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/etc/Makefile b/etc/Makefile index b27542a..4a13abe 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 |