mirror of
https://github.com/vagrant-libvirt/vagrant-libvirt.git
synced 2025-02-25 18:55:27 -06:00
Deploying to gh-pages from @ vagrant-libvirt/vagrant-libvirt@03f7bb7e31 🚀
This commit is contained in:
@@ -1 +1 @@
|
||||
{"files":{"js/site_constants-e1ac483f8cbbb2d44940348129b4f096317606c1e27aa57fe14734259e395fe6.js":{"logical_path":"js/site_constants.js","mtime":"2023-01-22T21:12:07+00:00","size":98,"digest":"e1ac483f8cbbb2d44940348129b4f096317606c1e27aa57fe14734259e395fe6","integrity":"sha256-4axIP4y7stRJQDSBKbTwljF2BsHieqV/4Uc0JZ45X+Y="}},"assets":{"js/site_constants.js":"js/site_constants-e1ac483f8cbbb2d44940348129b4f096317606c1e27aa57fe14734259e395fe6.js"}}
|
||||
{"files":{"js/site_constants-e1ac483f8cbbb2d44940348129b4f096317606c1e27aa57fe14734259e395fe6.js":{"logical_path":"js/site_constants.js","mtime":"2023-02-05T13:04:03+00:00","size":98,"digest":"e1ac483f8cbbb2d44940348129b4f096317606c1e27aa57fe14734259e395fe6","integrity":"sha256-4axIP4y7stRJQDSBKbTwljF2BsHieqV/4Uc0JZ45X+Y="}},"assets":{"js/site_constants.js":"js/site_constants-e1ac483f8cbbb2d44940348129b4f096317606c1e27aa57fe14734259e395fe6.js"}}
|
||||
@@ -121,7 +121,7 @@
|
||||
},"20": {
|
||||
"doc": "Configuration",
|
||||
"title": "Clock",
|
||||
"content": "Clock offset can be specified via libvirt.clock_offset. (Default is utc) . Additionally timers can be specified via libvirt.clock_timer. Available options for timers are: name, track, tickpolicy, frequency, mode, present . Vagrant.configure(\"2\") do |config| config.vm.provider :libvirt do |libvirt| # Set clock offset to localtime libvirt.clock_offset = 'localtime' # Timers ... libvirt.clock_timer :name => 'rtc', :tickpolicy => 'catchup' libvirt.clock_timer :name => 'pit', :tickpolicy => 'delay' libvirt.clock_timer :name => 'hpet', :present => 'no' libvirt.clock_timer :name => 'hypervclock', :present => 'yes' end end . ",
|
||||
"content": "The clock can be configured using one of the following methods: . | Set nothing, and the clock will default to UTC. | Set libvirt.clock_offset to ‘utc’ or ‘localtime’ by assigning the respective values. | To set the clock to a different timezone, assign the timezone name to libvirt.clock_timezone. | To set the clock to the same absolute time whenever the VM starts, set libvirt.clock_absolute. The value format is that of an epoch timestamp. | To set the clock at an arbitrary offset to realtime, use libvirt.clock_adjustment. Specify the offset adjustment in seconds. By default, the clock offset is relative to UTC, but this can be changed by setting libvirt.clock_basis to ‘localtime’. | . In addition to the above, timers can be specified via libvirt.clock_timer. Available options for timers are: name, track, tickpolicy, frequency, mode, present . Vagrant.configure(\"2\") do |config| config.vm.provider :libvirt do |libvirt| # Set clock offset to localtime libvirt.clock_offset = 'localtime' # Timers ... libvirt.clock_timer :name => 'rtc', :tickpolicy => 'catchup' libvirt.clock_timer :name => 'pit', :tickpolicy => 'delay' libvirt.clock_timer :name => 'hpet', :present => 'no' libvirt.clock_timer :name => 'hypervclock', :present => 'yes' end end . ",
|
||||
"url": "https://vagrant-libvirt.github.io/vagrant-libvirt/configuration.html#clock",
|
||||
"relUrl": "/configuration.html#clock"
|
||||
},"21": {
|
||||
|
||||
@@ -239,7 +239,7 @@ Bus 001 Device 009: ID 08e6:3437 Gemalto <span class="o">(</span>was Gemplus<spa
|
||||
<span class="n">libvirt</span><span class="p">.</span><span class="nf">hyperv_feature</span> <span class="ss">:name</span> <span class="o">=></span> <span class="s1">'spinlocks'</span><span class="p">,</span> <span class="ss">:state</span> <span class="o">=></span> <span class="s1">'on'</span><span class="p">,</span> <span class="ss">:retries</span> <span class="o">=></span> <span class="s1">'8191'</span>
|
||||
<span class="k">end</span>
|
||||
<span class="k">end</span>
|
||||
</code></pre></div></div> <h2 id="clock"> <a href="#clock" class="anchor-heading" aria-labelledby="clock"><svg viewBox="0 0 16 16" aria-hidden="true"><use xlink:href="#svg-link"></use></svg></a> Clock </h2> <p>Clock offset can be specified via <code class="language-plaintext highlighter-rouge">libvirt.clock_offset</code>. (Default is utc)</p> <p>Additionally timers can be specified via <code class="language-plaintext highlighter-rouge">libvirt.clock_timer</code>. Available options for timers are: name, track, tickpolicy, frequency, mode, present</p> <div class="language-ruby highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="no">Vagrant</span><span class="p">.</span><span class="nf">configure</span><span class="p">(</span><span class="s2">"2"</span><span class="p">)</span> <span class="k">do</span> <span class="o">|</span><span class="n">config</span><span class="o">|</span>
|
||||
</code></pre></div></div> <h2 id="clock"> <a href="#clock" class="anchor-heading" aria-labelledby="clock"><svg viewBox="0 0 16 16" aria-hidden="true"><use xlink:href="#svg-link"></use></svg></a> Clock </h2> <p>The clock can be configured using one of the following methods:</p> <ul> <li>Set nothing, and the clock will default to UTC.</li> <li>Set <code class="language-plaintext highlighter-rouge">libvirt.clock_offset</code> to ‘utc’ or ‘localtime’ by assigning the respective values.</li> <li>To set the clock to a different timezone, assign the timezone name to <code class="language-plaintext highlighter-rouge">libvirt.clock_timezone</code>.</li> <li>To set the clock to the same absolute time whenever the VM starts, set <code class="language-plaintext highlighter-rouge">libvirt.clock_absolute</code>. The value format is that of an epoch timestamp.</li> <li>To set the clock at an arbitrary offset to realtime, use <code class="language-plaintext highlighter-rouge">libvirt.clock_adjustment</code>. Specify the offset adjustment in seconds. By default, the clock offset is relative to UTC, but this can be changed by setting <code class="language-plaintext highlighter-rouge">libvirt.clock_basis</code> to ‘localtime’.</li> </ul> <p>In addition to the above, timers can be specified via <code class="language-plaintext highlighter-rouge">libvirt.clock_timer</code>. Available options for timers are: name, track, tickpolicy, frequency, mode, present</p> <div class="language-ruby highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="no">Vagrant</span><span class="p">.</span><span class="nf">configure</span><span class="p">(</span><span class="s2">"2"</span><span class="p">)</span> <span class="k">do</span> <span class="o">|</span><span class="n">config</span><span class="o">|</span>
|
||||
<span class="n">config</span><span class="p">.</span><span class="nf">vm</span><span class="p">.</span><span class="nf">provider</span> <span class="ss">:libvirt</span> <span class="k">do</span> <span class="o">|</span><span class="n">libvirt</span><span class="o">|</span>
|
||||
<span class="c1"># Set clock offset to localtime</span>
|
||||
<span class="n">libvirt</span><span class="p">.</span><span class="nf">clock_offset</span> <span class="o">=</span> <span class="s1">'localtime'</span>
|
||||
|
||||
2
feed.xml
2
feed.xml
@@ -1 +1 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.9.2">Jekyll</generator><link href="https://vagrant-libvirt.github.io/vagrant-libvirt/feed.xml" rel="self" type="application/atom+xml" /><link href="https://vagrant-libvirt.github.io/vagrant-libvirt/" rel="alternate" type="text/html" /><updated>2023-01-22T21:13:01+00:00</updated><id>https://vagrant-libvirt.github.io/vagrant-libvirt/feed.xml</id><title type="html">Vagrant Libvirt Documentation</title><subtitle>Create and manage Vagrant machines using Libvirt/QEMU</subtitle></feed>
|
||||
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.9.2">Jekyll</generator><link href="https://vagrant-libvirt.github.io/vagrant-libvirt/feed.xml" rel="self" type="application/atom+xml" /><link href="https://vagrant-libvirt.github.io/vagrant-libvirt/" rel="alternate" type="text/html" /><updated>2023-02-05T13:04:59+00:00</updated><id>https://vagrant-libvirt.github.io/vagrant-libvirt/feed.xml</id><title type="html">Vagrant Libvirt Documentation</title><subtitle>Create and manage Vagrant machines using Libvirt/QEMU</subtitle></feed>
|
||||
Reference in New Issue
Block a user