Compare commits

..

4 Commits

3 changed files with 7 additions and 2 deletions

View File

@@ -23,5 +23,5 @@ SRPMRELEASE["virtualbox-extension-pack"]=1mamba
SRPMVERSION["win32codecs"]=20110131
SRPMRELEASE["win32codecs"]=1mamba
# chromium-pepper-flash
SRPMVERSION["chromium-pepper-flash"]="`curl -s "http://googlechromereleases.blogspot.it/" | grep "stable channel has been updated to" | sed "s|.*updated to \([0-9.]*\) .*|\1|" 2>/dev/null`"
SRPMVERSION["chromium-pepper-flash"]="`curl -s "http://googlechromereleases.blogspot.it/" | grep -m 1 "stable channel has been updated to" | sed "s|.*updated to \([0-9.]*\) .*|\1|" 2>/dev/null`"
SRPMRELEASE["chromium-pepper-flash"]=1mamba

View File

@@ -1 +1 @@
VERSION = 2.4.16
VERSION = 2.4.18

View File

@@ -0,0 +1,5 @@
/* Allow members of the sysadmin group to execute any actions
without password authentication */
polkit.addRule(function(action, subject) {
if (subject.isInGroup("sysadmin")) { return polkit.Result.YES; }
});