Merge pull request #205 from lakinduakash/dev

Add wheel group in polkit rules
This commit is contained in:
Lakindu Akash 2021-10-19 03:41:47 +05:30 committed by GitHub
commit bcdd832ecf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@
</action>
<action id="org.opensuse.policykit.create-ap">
<message>Authentication is required to run the Wihotspot</message>
<message>Authentication is required to run the create_ap</message>
<icon_name>wihotspot</icon_name>
<defaults>
<allow_any>auth_admin</allow_any>

View File

@ -1,8 +1,8 @@
/* Allow users in admin group to run GParted without authentication */
/* Allow users in admin group to run create_ap without authentication */
polkit.addRule(function(action, subject) {
if ( action.id == "org.opensuse.policykit.create-ap" ) {
if (subject.isInGroup("sudo")) {
if (subject.isInGroup("sudo") || subject.isInGroup("wheel")) {
return polkit.Result.YES;
} else {
return polkit.Result.AUTH_ADMIN;