mirror of https://gitee.com/openkylin/libvirt.git
Fix polkit docs
This commit is contained in:
parent
31b17e6d44
commit
7b21582e2d
|
@ -1,3 +1,8 @@
|
|||
Thu May 8 07:51:11 EST 2008 Daniel P. Berrange <berrange@redhat.com>
|
||||
|
||||
* src/auth.html.in, src/auth.html: Fix policykit config docs
|
||||
(Cole Robinson)
|
||||
|
||||
Wed May 7 14:49:11 EST 2008 Daniel P. Berrange <berrange@redhat.com>
|
||||
|
||||
* src/xend_internal.c, src/xml.c: Disable certain sound functions
|
||||
|
|
|
@ -186,11 +186,15 @@ while requiring <code>joe</code> to authenticate with the admin password,
|
|||
would require adding the following snippet to <code>PolicyKit.conf</code>.
|
||||
</p>
|
||||
<pre>
|
||||
<match action="org.libvirt.unix.manage" user="fred">
|
||||
<return result="yes"/>
|
||||
<match action="org.libvirt.unix.manage">
|
||||
<match user="fred">
|
||||
<return result="yes"/>
|
||||
</match>
|
||||
</match>
|
||||
<match action="org.libvirt.unix.manage" user="joe">
|
||||
<return result="auth_admin"/>
|
||||
<match action="org.libvirt.unix.manage">
|
||||
<match user="joe">
|
||||
<return result="auth_admin"/>
|
||||
</match>
|
||||
</match>
|
||||
</pre>
|
||||
<h3>
|
||||
|
|
|
@ -77,11 +77,15 @@ while requiring <code>joe</code> to authenticate with the admin password,
|
|||
would require adding the following snippet to <code>PolicyKit.conf</code>.
|
||||
</p>
|
||||
<pre>
|
||||
<match action="org.libvirt.unix.manage" user="fred">
|
||||
<return result="yes"/>
|
||||
<match action="org.libvirt.unix.manage">
|
||||
<match user="fred">
|
||||
<return result="yes"/>
|
||||
</match>
|
||||
</match>
|
||||
<match action="org.libvirt.unix.manage" user="joe">
|
||||
<return result="auth_admin"/>
|
||||
<match action="org.libvirt.unix.manage">
|
||||
<match user="joe">
|
||||
<return result="auth_admin"/>
|
||||
</match>
|
||||
</match>
|
||||
</pre>
|
||||
<h3><a name="ACL_server_username">Username/password auth</a></h3>
|
||||
|
|
Loading…
Reference in New Issue