The branch main has been updated by des:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=aa183bc7f96fdd51c4a6ead5586a1cb1ecec6bb2

commit aa183bc7f96fdd51c4a6ead5586a1cb1ecec6bb2
Author:     Dag-Erling Smørgrav <d...@freebsd.org>
AuthorDate: 2025-07-24 13:00:37 +0000
Commit:     Dag-Erling Smørgrav <d...@freebsd.org>
CommitDate: 2025-07-24 13:00:47 +0000

    rc.d: Fix mountd service script.
    
    This script references variables beloning to the nfsd and zfs services,
    therefore it needs to load their configurations.
    
    MFC after:      1 week
    Differential Revision:  https://reviews.freebsd.org/D51473
---
 libexec/rc/rc.d/mountd | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libexec/rc/rc.d/mountd b/libexec/rc/rc.d/mountd
index 8c0aa87e1d13..dfd2431f9c35 100755
--- a/libexec/rc/rc.d/mountd
+++ b/libexec/rc/rc.d/mountd
@@ -70,6 +70,8 @@ mountd_precmd()
 }
 
 load_rc_config $name
+load_rc_config nfsd
+load_rc_config zfs
 
 # precmd is not compatible with svcj
 mountd_svcj="NO"

Reply via email to