diff options
author | Daniel P. Berrange <dan@berrange.com> | 2013-08-09 20:03:42 +0100 |
---|---|---|
committer | Daniel P. Berrange <dan@berrange.com> | 2013-08-09 20:03:42 +0100 |
commit | b6c7e3bb52bc9ab57335c72ad079eb8b7d89a0e3 (patch) | |
tree | 989e3cb01030a3add83fc9edf40cc50db305b8d4 /docs/aclpolkit.html.in | |
parent | 68a9637b2c0655c23713965f6444f66af95fbff3 (diff) | |
download | libvirt-b6c7e3bb52bc9ab57335c72ad079eb8b7d89a0e3.tar.gz |
Fix typo in domain name in polkit acl example
Signed-off-by: Daniel P. Berrange <dan@berrange.com>
Diffstat (limited to 'docs/aclpolkit.html.in')
-rw-r--r-- | docs/aclpolkit.html.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/aclpolkit.html.in b/docs/aclpolkit.html.in index 3b0d81a87b..3f0689ef69 100644 --- a/docs/aclpolkit.html.in +++ b/docs/aclpolkit.html.in @@ -398,7 +398,7 @@ polkit.addRule(function(action, subject) { if (action.id == "org.libvirt.api.domain.getattr" && subject.user == "berrange") { if (action._detail_connect_driver == 'LXC' && - action._detail_domain_name == 'busy') { + action._detail_domain_name == 'demo') { return polkit.Result.YES; } else { return polkit.Result.NO; |