You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
calculate-overlay/profiles/templates/3.6/3_ac_install_live/1-merge/sys-block/gparted/50-gparted-livecd.rules

13 lines
397 B

# Calculate comment=// os_install_root_type==livecd path=/etc/polkit-1/rules.d
// Run gparted on livecd without authorization
//
polkit.addRule(function(action, subject) {
if (action.id == "org.gentoo.pkexec.gparted" && subject.active) {
return polkit.Result.YES;
}
if (action.id == "org.gnome.gparted" && subject.active) {
return polkit.Result.YES;
}
});