KaKi87@jlai.lucake to KDE@lemmy.kde.social • 5 months agoInstall updates from Discover without password ?message-squaremessage-square6 fedilinkarrow-up17file-text
arrow-up17message-squareInstall updates from Discover without password ?KaKi87@jlai.lucake to KDE@lemmy.kde.social • 5 months agomessage-square6 Commentsfedilinkfile-text
minus-squareZamundaaa@discuss.tchncs.dehexbear1·5 months agoFedora just has polkit.addRule(function(action, subject) { if ((action.id == "org.freedesktop.packagekit.package-install" || action.id == "org.freedesktop.packagekit.package-remove") && subject.active == true && subject.local == true && subject.isInGroup("wheel")) { return polkit.Result.YES; } }); in /usr/share/polkit-1/rules.d/org.freedesktop.packagekit.rules. If you put the same file in there, it should work. linkfedilink
Fedora just has
polkit.addRule(function(action, subject) { if ((action.id == "org.freedesktop.packagekit.package-install" || action.id == "org.freedesktop.packagekit.package-remove") && subject.active == true && subject.local == true && subject.isInGroup("wheel")) { return polkit.Result.YES; } });
in
/usr/share/polkit-1/rules.d/org.freedesktop.packagekit.rules
. If you put the same file in there, it should work.