Hello community,
here is the log from the commit of package polkit-default-privs for
openSUSE:Factory checked in at 2018-08-02 14:50:58
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/polkit-default-privs (Old)
and /work/SRC/openSUSE:Factory/.polkit-default-privs.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "polkit-default-privs"
Thu Aug 2 14:50:58 2018 rev:147 rq:626509 version:13.2
Changes:
--------
---
/work/SRC/openSUSE:Factory/polkit-default-privs/polkit-default-privs.changes
2018-07-12 09:17:43.542297583 +0200
+++
/work/SRC/openSUSE:Factory/.polkit-default-privs.new/polkit-default-privs.changes
2018-08-02 14:51:00.479563304 +0200
@@ -1,0 +2,11 @@
+Mon Jul 30 16:08:16 UTC 2018 - [email protected]
+
+- polkit-default-privs: whitelist gamemode pkexec action (bsc#1093979)
+
+-------------------------------------------------------------------
+Fri Jul 27 09:55:22 UTC 2018 - [email protected]
+
+- polkit-default-privs: fix switchboard-plug* whitelisting. An error slipped
+ in that causes `set_polkit_default_privs` to print an error message.
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ polkit-default-privs-13.2.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/polkit-default-privs-13.2/obs/mkpackage
new/polkit-default-privs-13.2/obs/mkpackage
--- old/polkit-default-privs-13.2/obs/mkpackage 2018-07-06 17:56:05.000000000
+0200
+++ new/polkit-default-privs-13.2/obs/mkpackage 2018-07-30 18:06:18.000000000
+0200
@@ -1,9 +1,13 @@
#!/bin/bash
set -e
shopt -s nullglob
-name="`pwd -P`"
-name=${name##*/}
-name=${name%%.*}
+if [ $# -eq 1 ]; then
+ name="$1"
+else
+ name="`pwd -P`"
+ name=${name##*/}
+ name=${name%%.*}
+fi
src="$PWD"
if [ ! -d "$name/.osc" ]; then
echo "*** Error: please check out the package:"
@@ -14,7 +18,19 @@
if [ "`git --no-pager diff --name-only|wc -l`" != '0' -o "`git --no-pager diff
--name-only --cached|wc -l`" != 0 ]; then
echo "*** Error: uncomitted changes"
echo "run 'git add file' to add files, 'git commit -a' to commit
changes"
- exit 1
+ if [ ! -t 0 ]; then
+ exit 1
+ fi
+ echo "Do you want to continue anyway (y/n)?"
+ echo "The resulting package will not contain the uncommited changes."
+ while true; do
+ read CONT
+ if [ "$CONT" = "y" ]; then
+ break
+ else
+ exit 1
+ fi
+ done
fi
cd "$name"
echo "osc up"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/polkit-default-privs-13.2/polkit-default-privs.restrictive
new/polkit-default-privs-13.2/polkit-default-privs.restrictive
--- old/polkit-default-privs-13.2/polkit-default-privs.restrictive
2018-07-06 17:56:05.000000000 +0200
+++ new/polkit-default-privs-13.2/polkit-default-privs.restrictive
2018-07-30 18:06:18.000000000 +0200
@@ -847,7 +847,7 @@
# switchboard-plug-locale (bsc#1088472)
org.pantheon.switchboard.locale.administration no:no:auth_admin_keep
# switchboard-plug-security-privacy (bsc#1088472)
-polkit-untracked-privilege org.pantheon.security-privacy no:no:auth_admin_keep
+org.pantheon.security-privacy no:no:auth_admin_keep
# switchboard-plug-useraccounts (bsc#1088472)
org.pantheon.switchboard.user-accounts.administration no:no:auth_admin_keep
@@ -873,4 +873,7 @@
org.freedesktop.DisplayManager.AccountsService.ModifyOwn auth_self
org.freedesktop.DisplayManager.AccountsService.ReadAny
auth_admin:auth_admin:yes
+# gamemode (bsc#1093979)
+com.feralinteractive.GameMode.governor-helper (no:no:auth_admin_keep)
+
###
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/polkit-default-privs-13.2/polkit-default-privs.standard
new/polkit-default-privs-13.2/polkit-default-privs.standard
--- old/polkit-default-privs-13.2/polkit-default-privs.standard 2018-07-06
17:56:05.000000000 +0200
+++ new/polkit-default-privs-13.2/polkit-default-privs.standard 2018-07-30
18:06:18.000000000 +0200
@@ -915,7 +915,7 @@
# switchboard-plug-locale (bsc#1088472)
org.pantheon.switchboard.locale.administration no:no:auth_admin_keep
# switchboard-plug-security-privacy (bsc#1088472)
-polkit-untracked-privilege org.pantheon.security-privacy no:no:auth_admin_keep
+org.pantheon.security-privacy no:no:auth_admin_keep
# switchboard-plug-useraccounts (bsc#1088472)
org.pantheon.switchboard.user-accounts.administration no:no:auth_admin_keep
@@ -941,4 +941,7 @@
org.freedesktop.DisplayManager.AccountsService.ModifyOwn
auth_self:auth_self:yes
org.freedesktop.DisplayManager.AccountsService.ReadAny yes
+# gamemode (bsc#1093979)
+com.feralinteractive.GameMode.governor-helper (no:no:yes)
+
###