Closed owl4ce closed 3 years ago
Hi, thanks in advance. I like your work.
I just want to ask. What's the difference between
duktape
from here and the official Gentoo's repo? Currently I usebrave-bin
,polkit
, andduktape
from danrepo.
It's almost the same, but because of this https://github.com/ferion11/danrepo/issues/2 bug, I had to add a flag for debugging and another to manual include libm (for those having the same issue), although for me, in my machine,, the two are the same (USE="cmdline -debug -libm" works for me)
Thank you for answering. I suggest enabling the discussion
feature in this repo's settings.
Hi, I had this when there was a rule using a format like below (although by default too)
polkit.addAdminRule(function(action, subject) {
return ["unix-group:wheel"];
});
polkit.addAdminRule(function(action, subject) {
return ["unix-user:0"];
});
in /etc/polkit-1/rules.d/*
So I have to remove the above formatted rule so that it can be authenticated as root, as a result I can't set certain groups to get rights too. Any solution?
I guess is it because of using duktape
as the build dependency? Because I tried to go back to using spidermonkey
, and it worked.
Hi, I had this when there was a rule using a format like below (although by default too)
polkit.addAdminRule(function(action, subject) { return ["unix-group:wheel"]; }); polkit.addAdminRule(function(action, subject) { return ["unix-user:0"]; });
in
/etc/polkit-1/rules.d/*
So I have to remove the above formatted rule so that it can be authenticated as root, as a result I can't set certain groups to get rights too. Any solution?
Oh, idk whats happen. Now solved in my new Gentoo system.
Hi, thanks in advance. I like your work.
I just want to ask. What's the difference between
duktape
from here and the official Gentoo's repo? Currently I usebrave-bin
,polkit
, andduktape
from danrepo.