In https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211506, I described
how the 11.0-BETA3 installer does not seem to respect any of the
checkboxes in the "Choose the services you would like to be started at
boot" dialog.
This is caused by the bsdinstall/scripts/hardening script, which
implements the new hardening options dialog. The script starts by
overwriting the previously written rc.conf.services file:
echo -n > $BSDINSTALL_TMPETC/rc.conf.services
which is obviously incorrect. It should clear out rc.conf.hardening
instead.
This fix should go to stable/11 ASAP, if re@ agrees.