formatdomain.html.in: fix tickpolicy

there is no option "none":

>From libvirt/src/conf/domain_conf.c

<snip>
VIR_ENUM_IMPL(virDomainTimerTickpolicy,
VIR_DOMAIN_TIMER_TICKPOLICY_LAST,
              "delay",
              "catchup",
              "merge",
              "discard");
</snip>

Replacing with delay.

Signed-off-by: Douglas Schilling Landgraf <dougsland@redhat.com>
This commit is contained in:
Douglas Schilling Landgraf 2011-09-28 20:58:00 -04:00 committed by Daniel Veillard
parent dd09da70f2
commit c7d1f5980b

View File

@ -746,7 +746,7 @@
&lt;timer name="rtc" tickpolicy="catchup" track="guest"&gt;
&lt;catchup threshold=123 slew=120 limit=10000/&gt;
&lt;/timer&gt;
&lt;timer name="pit" tickpolicy="none"/&gt;
&lt;timer name="pit" tickpolicy="delay"/&gt;
&lt;/clock&gt;
...</pre>