From 4495fff98f9c8aaa62f2630d4f4abe55887b8b6b Mon Sep 17 00:00:00 2001 From: Juan Orti Alcaine Date: Jul 15 2019 09:16:29 +0000 Subject: Fix polkit logging --- diff --git a/60-vbmcd.rules b/60-vbmcd.rules index c521404..4a6ac71 100644 --- a/60-vbmcd.rules +++ b/60-vbmcd.rules @@ -1,8 +1,8 @@ polkit.addRule(function(action, subject) { if (action.id == "org.libvirt.unix.manage" && subject.user == "vbmcd") { - return polkit.Result.YES; polkit.log("action=" + action); polkit.log("subject=" + subject); + return polkit.Result.YES; } }); diff --git a/python-virtualbmc.spec b/python-virtualbmc.spec index 3630b05..8519ce2 100644 --- a/python-virtualbmc.spec +++ b/python-virtualbmc.spec @@ -2,7 +2,7 @@ Name: python-%{srcname} Version: 1.5.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A virtual BMC for controlling virtual machines using IPMI commands License: ASL 2.0 URL: https://github.com/openstack/virtualbmc @@ -106,6 +106,9 @@ exit 0 %doc doc/build/html %changelog +* Mon Jul 15 2019 Juan Orti Alcaine - 1.5.0-5 +- Fix polkit logging + * Sun Jul 14 2019 Juan Orti Alcaine - 1.5.0-4 - Fix tests for Fedora 30