| Summary: | rc.network overrides mountd_flags rather than appending to them | ||
|---|---|---|---|
| Product: | Base System | Reporter: | Vivek Khera <khera> |
| Component: | conf | Assignee: | nbm |
| Status: | Closed FIXED | ||
| Severity: | Affects Only Me | ||
| Priority: | Normal | ||
| Version: | 3.4-STABLE | ||
| Hardware: | Any | ||
| OS: | Any | ||
Responsible Changed From-To: gnats-admin->freebsd-bugs Misfiled PR State Changed From-To: open->suspended I applied a fix in rev 1.81 of rc.network. Thanks for the report! Responsible Changed From-To: freebsd-bugs->nbm I'll MFC this soon. State Changed From-To: suspended->closed MFC'd in rc.network 1.74.2.4. |
in /etc/rc.network, there is this code: echo -n ' mountd' if [ "X${weak_mountd_authentication}" = X"YES" ]; then mountd_flags="-n" fi I think that mound_flags should have -n appended rather than overriding whatever other values of mound_flags one might want: mountd_flags="$mountd_flags -n" Fix: see above. How-To-Repeat: n/a