From fd34acd6a1649e38d59d6970115e5633e01e3b01 Mon Sep 17 00:00:00 2001 From: Bruce Leidl Date: Tue, 9 Apr 2019 15:21:12 -0400 Subject: [PATCH] add org.freedesktop.machine1.shell to polkit rules --- .../recipes-citadel/citadel-config/files/polkit/citadel.rules | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-citadel/recipes-citadel/citadel-config/files/polkit/citadel.rules b/meta-citadel/recipes-citadel/citadel-config/files/polkit/citadel.rules index 8584506..8ba030c 100644 --- a/meta-citadel/recipes-citadel/citadel-config/files/polkit/citadel.rules +++ b/meta-citadel/recipes-citadel/citadel-config/files/polkit/citadel.rules @@ -1,5 +1,6 @@ polkit.addRule(function(action, subject) { if ((action.id == "org.freedesktop.NetworkManager.settings.modify.system" || + action.id == "org.freedesktop.machine1.shell" || action.id == "org.freedesktop.machine1.host-open-pty") && subject.local && subject.isInGroup("citadel")) { return polkit.Result.YES;