diff options
author | 2007-05-26 20:46:40 +0000 | |
---|---|---|
committer | 2007-05-26 20:46:40 +0000 | |
commit | 7ed90f47da32b46803070f9ff2a371349fe566b4 (patch) | |
tree | 5adcfca12dea4d7ecda94fc0fa23942fe02d2eb6 | |
parent | cvs_server_path is more appropriate to check than cvs_server_active. (diff) | |
download | wireguard-openbsd-7ed90f47da32b46803070f9ff2a371349fe566b4.tar.xz wireguard-openbsd-7ed90f47da32b46803070f9ff2a371349fe566b4.zip |
improve the EXAMPLES for fstab entries of mount_vnd(8):
- reduce the number of used svnd devs to the default number of an OpenBSD System
- make it more obvious that vnd's w/ different levels or no encryption can be
specified.
diff from Okan Demirmen, thanks
-rw-r--r-- | sbin/mount_vnd/mount_vnd.8 | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/sbin/mount_vnd/mount_vnd.8 b/sbin/mount_vnd/mount_vnd.8 index 86922ba49f9..f22cd6dd4ec 100644 --- a/sbin/mount_vnd/mount_vnd.8 +++ b/sbin/mount_vnd/mount_vnd.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mount_vnd.8,v 1.3 2007/05/26 03:37:45 grunk Exp $ +.\" $OpenBSD: mount_vnd.8,v 1.4 2007/05/26 20:46:40 grunk Exp $ .\" .\" Copyright (c) 1993 University of Utah. .\" Copyright (c) 1980, 1989, 1991, 1993 @@ -254,22 +254,19 @@ field has to be set to 0 to prevent .Xr fsck 8 from checking the file system for the same reasons. .Bd -literal -offset indent -/home/img1 /dev/svnd1c vnd rw 0 0 -/dev/svnd1a /home/mnt1 ffs rw,noauto,sync 0 0 +/home/img0 /dev/svnd0c vnd rw 0 0 +/dev/svnd0a /home/mnt0 ffs rw,noauto,sync 0 0 -/home/img2 /dev/svnd2c vnd rw 0 0 -/dev/svnd2a /home/mnt2 ffs rw,sync,noauto,nodev,nosuid 0 0 - -/home/img3 /dev/svnd3c vnd rw,-k 0 0 -/dev/svnd3a /home/mnt3 ffs rw,sync,noauto,nodev,nosuid 0 0 +/home/img1 /dev/svnd1c vnd rw,-k 0 0 +/dev/svnd1a /home/mnt1 ffs rw,sync,noauto,nodev,nosuid 0 0 -/home/img4 /dev/svnd4c vnd rw,-K=20000 0 0 -/dev/svnd4a /home/mnt4 ffs rw,sync,noauto,nodev,nosuid 0 0 +/home/img2 /dev/svnd2c vnd rw,-K=20000 0 0 +/dev/svnd2a /home/mnt2 ffs rw,sync,noauto,nodev,nosuid 0 0 -/home/img5 /dev/svnd5c vnd rw,-K=20000,-S=/home/img5.salt 0 0 -/dev/svnd5a /home/mnt5 ffs rw,noauto 0 0 -/dev/svnd5d /home/mnt6 ffs rw,noauto 0 0 -/dev/svnd5e /home/mnt7 ffs rw,noauto 0 0 +/home/img3 /dev/svnd3c vnd rw,-K=20000,-S=/home/img3.salt 0 0 +/dev/svnd3a /home/mnt3 ffs rw,noauto 0 0 +/dev/svnd3d /home/mnt4 ffs rw,noauto 0 0 +/dev/svnd3e /home/mnt5 ffs rw,noauto 0 0 .Ed .Sh SEE ALSO .Xr vnd 4 , |