View | Details | Raw Unified | Return to bug 103089
Collapse All | Expand All

(-)sbin/mount_nfs/mount_nfs.8 (+5 lines)
Lines 163-168 Link Here
163
Useful for
163
Useful for
164
.Xr fstab 5 ,
164
.Xr fstab 5 ,
165
where the file system mount is not critical to multiuser operation.
165
where the file system mount is not critical to multiuser operation.
166
.It Fl B
167
Fork off a child immediately, even before the first attempt to contact the
168
server. Useful for
169
.Xr fstab 5 ,
170
where notification about failiure is not desired.
166
.It Fl c
171
.It Fl c
167
For UDP mount points, do not do a
172
For UDP mount points, do not do a
168
.Xr connect 2 .
173
.Xr connect 2 .
(-)sbin/mount_nfs/mount_nfs.c (+8 lines)
Lines 278-283 Link Here
278
		case 'b':
278
		case 'b':
279
			opflags |= BGRND;
279
			opflags |= BGRND;
280
			break;
280
			break;
281
		case 'B':
282
			opflags |= BGRND;
283
			if ((opflags & (BGRND | ISBGRND)) == BGRND) {
284
				opflags |= ISBGRND;
285
				if (daemon(0, 0) != 0)
286
					err(1, "daemon");
287
			}
288
			break;
281
		case 'c':
289
		case 'c':
282
			nfsargsp->flags |= NFSMNT_NOCONN;
290
			nfsargsp->flags |= NFSMNT_NOCONN;
283
			break;
291
			break;

Return to bug 103089