Skip to content

Instantly share code, notes, and snippets.

@lovelock
Created October 28, 2013 04:15
Show Gist options
  • Save lovelock/7191364 to your computer and use it in GitHub Desktop.
Save lovelock/7191364 to your computer and use it in GitHub Desktop.
/usr/share/polkit-1/rules.d/10-drivers.rules fix for automount internal hard drive.
polkit.addRule(function(action, subject) {
if (action.id.indexOf("org.freedesktop.udisks2.") == 0){
return polkit.Result.YES;
}
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment