Date: Sun, 18 Sep 2005 08:50:17 GMT From: Thierry Herbelot <thierry@herbelot.com> To: freebsd-bugs@FreeBSD.org Subject: Re: conf/86260: the weak_mountd_authentication flag from /etc/rc.conf is not taken into account Message-ID: <200509180850.j8I8oH0u021107@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR conf/86260; it has been noted by GNATS. From: Thierry Herbelot <thierry@herbelot.com> To: bug-followup@freebsd.org Cc: Subject: Re: conf/86260: the weak_mountd_authentication flag from /etc/rc.conf is not taken into account Date: Sun, 18 Sep 2005 10:49:28 +0200 the following diff (inspired by /etc/rc.d/named) solves the problem : 32c32 < mountd_flags="${mountd_flags} -n" --- > rc_flags="${rc_flags} -n" 36c36 < checkyesno weak_mountd_authentication && mountd_flags="-n" --- > checkyesno weak_mountd_authentication && rc_flags="${rc_flags} -n" the point is to use the correct "rc_flags" variable instead of "mountd_flags" which is later overwritten. TfH
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200509180850.j8I8oH0u021107>