Blob Blame History Raw
From ea5c964f4a939017a3b4fd072b735df3994d7e1f Mon Sep 17 00:00:00 2001
Message-Id: <ea5c964f4a939017a3b4fd072b735df3994d7e1f.1377873639.git.jdenemar@redhat.com>
From: "Daniel P. Berrange" <dan@berrange.com>
Date: Fri, 30 Aug 2013 11:13:43 +0100
Subject: [PATCH] Fix typo in domain name in polkit acl example

For

  https://bugzilla.redhat.com/show_bug.cgi?id=700443

Signed-off-by: Daniel P. Berrange <dan@berrange.com>
(cherry picked from commit b6c7e3bb52bc9ab57335c72ad079eb8b7d89a0e3)
---
 docs/aclpolkit.html.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/aclpolkit.html.in b/docs/aclpolkit.html.in
index 3b0d81a..3f0689e 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" &amp;&amp;
         subject.user == "berrange") {
           if (action._detail_connect_driver == 'LXC' &amp;&amp;
-              action._detail_domain_name == 'busy') {
+              action._detail_domain_name == 'demo') {
             return polkit.Result.YES;
           } else {
             return polkit.Result.NO;
-- 
1.8.3.2