Conditionalize etc/rc.d/{zfs,zvol} install on MK_ZFS != no

MFC after: 2 weeks
Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
Enji Cooper 2016-05-15 04:39:36 +00:00
parent 7e7d2a6f50
commit 0648b47f06
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=299840

View File

@ -127,8 +127,6 @@ FILES= DAEMON \
ypset \
ypupdated \
ypxfrd \
zfs \
zvol
.if ${MK_ACCT} != "no"
FILESGROUPS+= ACCT
@ -302,6 +300,13 @@ FILES+= hostapd
FILES+= wpa_supplicant
.endif
.if ${MK_ZFS} != "no"
FILESGROUPS+= ZFS
ZFS+= zfs
ZFS+= zvol
ZFSPACKAGE= zfs
.endif
.for fg in ${FILESGROUPS}
${fg}MODE?= ${BINMODE}
.endfor