diff options
Diffstat (limited to 'abs/extra/xbmc/polkit.rules')
-rw-r--r-- | abs/extra/xbmc/polkit.rules | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/abs/extra/xbmc/polkit.rules b/abs/extra/xbmc/polkit.rules deleted file mode 100644 index 4b6d0fd..0000000 --- a/abs/extra/xbmc/polkit.rules +++ /dev/null @@ -1,12 +0,0 @@ -polkit.addRule(function(action, subject) { - if (subject.user == "xbmc") { - polkit.log("action=" + action); - polkit.log("subject=" + subject); - if (action.id.indexOf("org.freedesktop.login1.") == 0) { - return polkit.Result.YES; - } - if (action.id.indexOf("org.freedesktop.udisks.") == 0) { - return polkit.Result.YES; - } - } -}); |