Documentation > Tips and Tricks

rule permitting the user to be installed without privileges

(1/1)

cdrw:
Hello!

Tired of installing or unmounting disks, enter the user's password.
Found on the Internet the rule allowing the mounting to the user without privileges.


--- Code: ---cat /etc/polkit-1/rules.d/20-plugdev-group-mount-override.rules
--- End code ---


--- Code: ---/* http://udisks.freedesktop.org/docs/latest/udisks-polkit-actions.html */
/*20-plugdev-group-mount-override.rules*/

polkit.addRule(function(action, subject) {
  if (action.id.match("org.freedesktop.udisks2.") && subject.isInGroup("wheel")) {
    return polkit.Result.YES;
  }
});
--- End code ---

Now the connection of disks and usbkeys does not require a password.

Navigation

[0] Message Index

Go to full version