summaryrefslogtreecommitdiff
path: root/src/qemu/qemu.conf
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2014-02-05 10:04:35 -0700
committerEric Blake <eblake@redhat.com>2014-02-05 10:40:14 -0700
commitf34ea654de31dcdd88b23dfdfd8793b7e81254fe (patch)
treeaef462fc0c03c33d2b3bce69035b0d57a9a5e440 /src/qemu/qemu.conf
parent11f20e43f1388d5f8f8c0bfac8c9cda6160a106b (diff)
downloadlibvirt-f34ea654de31dcdd88b23dfdfd8793b7e81254fe.tar.gz
maint: fix grammar in conf file
Noticed a misuse of 'to' while testing my event regression under polkit ACLs, and decided to review the entire conf files for other legibility bugs. * daemon/libvirtd.conf: Use correct grammar. * src/qemu/qemu.conf: Likewise. Signed-off-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'src/qemu/qemu.conf')
-rw-r--r--src/qemu/qemu.conf14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/qemu/qemu.conf b/src/qemu/qemu.conf
index 17f1b10afe..e43608494c 100644
--- a/src/qemu/qemu.conf
+++ b/src/qemu/qemu.conf
@@ -58,7 +58,7 @@
#vnc_tls_x509_verify = 1
-# The default VNC password. Only 8 letters are significant for
+# The default VNC password. Only 8 bytes are significant for
# VNC passwords. This parameter is only used if the per-domain
# XML config does not already provide a password. To allow
# access without passwords, leave this commented out. An empty
@@ -180,7 +180,7 @@
# VNC WebSocket port policies, same rules apply as with remote display
# ports. VNC WebSockets use similar display <-> port mappings, with
-# the exception being that ports starts from 5700 instead of 5900.
+# the exception being that ports start from 5700 instead of 5900.
#
#remote_websocket_port_min = 5700
#remote_websocket_port_max = 65535
@@ -333,7 +333,7 @@
# disable guest hugepage backing.
#
# NB, within this mount point, guests will create memory backing files
-# in a location of $MOUNTPOINT/libvirt/qemu
+# in a location of $MOUNTPOINT/libvirt/qemu
#
#hugetlbfs_mount = "/dev/hugepages"
@@ -421,14 +421,14 @@
# Keepalive protocol:
# This allows qemu driver to detect broken connections to remote
# libvirtd during peer-to-peer migration. A keepalive message is
-# sent to the deamon after keepalive_interval seconds of inactivity
-# to check if the deamon is still responding; keepalive_count is a
+# sent to the daemon after keepalive_interval seconds of inactivity
+# to check if the daemon is still responding; keepalive_count is a
# maximum number of keepalive messages that are allowed to be sent
-# to the deamon without getting any response before the connection
+# to the daemon without getting any response before the connection
# is considered broken. In other words, the connection is
# automatically closed approximately after
# keepalive_interval * (keepalive_count + 1) seconds since the last
-# message received from the deamon. If keepalive_interval is set to
+# message received from the daemon. If keepalive_interval is set to
# -1, qemu driver will not send keepalive requests during
# peer-to-peer migration; however, the remote libvirtd can still
# send them and source libvirtd will send responses. When