mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
docs: Fix libvirt_guest nss module name
In the documentation we are mixing libvirt-guest and libvirt_guest module name. The correct name is the latter. Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
@@ -29,10 +29,10 @@
|
|||||||
</change>
|
</change>
|
||||||
<change>
|
<change>
|
||||||
<summary>
|
<summary>
|
||||||
nss: Introduce <code>libvirt-guest</code>
|
nss: Introduce <code>libvirt_guest</code>
|
||||||
</summary>
|
</summary>
|
||||||
<description>
|
<description>
|
||||||
New <code>libvirt-guest</code> nss module that translates libvirt
|
New <code>libvirt_guest</code> nss module that translates libvirt
|
||||||
guest names into IP addresses.
|
guest names into IP addresses.
|
||||||
</description>
|
</description>
|
||||||
</change>
|
</change>
|
||||||
|
|||||||
@@ -72,34 +72,34 @@ hosts: files libvirt dns
|
|||||||
records. Therefore this is dependent on hostname provided by guests. Thing
|
records. Therefore this is dependent on hostname provided by guests. Thing
|
||||||
is, not all the guests out there provide one in DHCP transactions, or not
|
is, not all the guests out there provide one in DHCP transactions, or not
|
||||||
every sysadmin out there believes all the guests. Hence libvirt implements
|
every sysadmin out there believes all the guests. Hence libvirt implements
|
||||||
second method in <code>libvirt-guest</code> module which does libvirt guest
|
second method in <code>libvirt_guest</code> module which does libvirt guest
|
||||||
name to IP address translation (regardless of hostname set in the guest).
|
name to IP address translation (regardless of hostname set in the guest).
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
To enable either of the modules put their name into the
|
To enable either of the modules put their name into the
|
||||||
<code>nsswitch.conf</code> file. For instance, to enable
|
<code>nsswitch.conf</code> file. For instance, to enable
|
||||||
<code>libvirt-guest</code> module:
|
<code>libvirt_guest</code> module:
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
$ cat /etc/nsswitch.conf
|
$ cat /etc/nsswitch.conf
|
||||||
# /etc/nsswitch.conf:
|
# /etc/nsswitch.conf:
|
||||||
hosts: files libvirt-guest dns
|
hosts: files libvirt_guest dns
|
||||||
# ...
|
# ...
|
||||||
</pre>
|
</pre>
|
||||||
<p>Or users can enable both at the same time:</p>
|
<p>Or users can enable both at the same time:</p>
|
||||||
<pre>
|
<pre>
|
||||||
$ cat /etc/nsswitch.conf
|
$ cat /etc/nsswitch.conf
|
||||||
# /etc/nsswitch.conf:
|
# /etc/nsswitch.conf:
|
||||||
hosts: files libvirt libvirt-guest dns
|
hosts: files libvirt libvirt_guest dns
|
||||||
# ...
|
# ...
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
This configuration will mean that if hostname is not found by the
|
This configuration will mean that if hostname is not found by the
|
||||||
<code>libvirt</code> module (e.g. because a guest did not sent hostname
|
<code>libvirt</code> module (e.g. because a guest did not sent hostname
|
||||||
during DHCP transaction), the <code>libvirt-guest</code> module is
|
during DHCP transaction), the <code>libvirt_guest</code> module is
|
||||||
consulted (and if the hostname matches libvirt guest name it will be
|
consulted (and if the hostname matches libvirt guest name it will be
|
||||||
resolved).
|
resolved).
|
||||||
</p>
|
</p>
|
||||||
@@ -181,7 +181,7 @@ virsh domifaddr --source lease $domain
|
|||||||
<p>
|
<p>
|
||||||
If there's no record for either of the aforementioned commands, it's
|
If there's no record for either of the aforementioned commands, it's
|
||||||
very likely that NSS module won't find anything and vice versa.
|
very likely that NSS module won't find anything and vice versa.
|
||||||
As of <code>v3.0.0</code> libvirt provides <code>libvirt-guest</code> NSS
|
As of <code>v3.0.0</code> libvirt provides <code>libvirt_guest</code> NSS
|
||||||
module that doesn't have this limitation. However, the statement is still
|
module that doesn't have this limitation. However, the statement is still
|
||||||
true for the <code>libvirt</code> NSS module.
|
true for the <code>libvirt</code> NSS module.
|
||||||
</p>
|
</p>
|
||||||
|
|||||||
Reference in New Issue
Block a user