diff --git a/etc/defaults/rc.conf b/etc/defaults/rc.conf index 61bffc86ccbd..32e75f67f43b 100644 --- a/etc/defaults/rc.conf +++ b/etc/defaults/rc.conf @@ -741,3 +741,9 @@ if [ -z "${source_rc_confs_defined}" ]; then done } fi + +# Allow vendors to override FreeBSD defaults in /etc/default/rc.conf +# without the need to carefully manage /etc/rc.conf. +if [ -r /etc/defaults/vendor.conf ]; then + . /etc/defaults/vendor.conf +fi