Skip to content

Instantly share code, notes, and snippets.

@ares
Created June 29, 2022 11:44
Show Gist options
  • Save ares/9a9d336ac9583352c9b13dae12d93b48 to your computer and use it in GitHub Desktop.
Save ares/9a9d336ac9583352c9b13dae12d93b48 to your computer and use it in GitHub Desktop.
cat /etc/polkit-1/rules.d/60-libvirt.rules
polkit.addRule(function(action, subject) {
if (action.id == "org.libvirt.unix.manage" && subject.active && subject.user == "ares") {
return polkit.Result.YES;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment