KaKi87@jlai.lu to KDE@lemmy.kde.social · 5 months agoInstall updates from Discover without password ?message-squaremessage-square20fedilinkarrow-up115arrow-down12file-text
arrow-up113arrow-down1message-squareInstall updates from Discover without password ?KaKi87@jlai.lu to KDE@lemmy.kde.social · 5 months agomessage-square20fedilinkfile-text
minus-squareZamundaaa@discuss.tchncs.delinkfedilinkEnglisharrow-up2·5 months agoYes, and many distros have a polkit rule set up to allow installing or updating without a password. You can likely just copy it from Fedora or sth
minus-squareKaKi87@jlai.luOPlinkfedilinkarrow-up1·5 months agoCould you please elaborate on that ? Thanks
minus-squareZamundaaa@discuss.tchncs.delinkfedilinkEnglisharrow-up2·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.
Yes, and many distros have a polkit rule set up to allow installing or updating without a password. You can likely just copy it from Fedora or sth
Could you please elaborate on that ? Thanks
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.