From 5364d09433d1fe97baa6a860d72385c4b4487078 Mon Sep 17 00:00:00 2001 From: Michal Privoznik Date: Fri, 11 Nov 2016 23:40:27 +0100 Subject: [PATCH] drvbhyve.html.in: Kill useless spaces in

The 
 section is rendered as-is on the page. That is, if all
the lines are prefixed with 4 spaces the rendered page will also
have them. Problem is if we put a box around such 
 because
the content might not fix into it.

Signed-off-by: Michal Privoznik 
---
 docs/drvbhyve.html.in | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

diff --git a/docs/drvbhyve.html.in b/docs/drvbhyve.html.in
index 485b05154d..9b7872ba06 100644
--- a/docs/drvbhyve.html.in
+++ b/docs/drvbhyve.html.in
@@ -154,13 +154,13 @@ the following to the domain XML (Since 1.2.4):
 

-  ...
-  <devices>
-    <serial type="nmdm">
-      <source master="/dev/nmdm0A" slave="/dev/nmdm0B"/>
-    </serial>
-  </devices>
-  ...
+... +<devices> + <serial type="nmdm"> + <source master="/dev/nmdm0A" slave="/dev/nmdm0B"/> + </serial> +</devices> +...

Make sure to load the nmdm kernel module if you plan to use that.

@@ -219,12 +219,12 @@ tweak them.

An example of domain XML device entry for that will look like:

-  ...
-  <disk type='volume' device='disk'>
-    <source pool='zfspool' volume='vol1'/>
-    <target dev='vdb' bus='virtio'/>
-  </disk>
-  ...
+... +<disk type='volume' device='disk'> + <source pool='zfspool' volume='vol1'/> + <target dev='vdb' bus='virtio'/> +</disk> +...

Please refer to the Storage documentation for more details on storage management.

@@ -241,10 +241,10 @@ the first disk in the domain (either cdrom- or attempt to boot from the first partition in the disk image.

-  ...
-    <bootloader>/usr/local/sbin/grub-bhyve</bootloader>
-    <bootloader_args>...</bootloader_args>
-  ...
+...
+<bootloader>/usr/local/sbin/grub-bhyve</bootloader>
+<bootloader_args>...</bootloader_args>
+...
 

Caveat: bootloader_args does not support any quoting.