Archive for November 2009
Configuring Debian Squeeze with PolicyKit for sudo
I’ve recently gone back to the roots and installed Debian testing to replace Ubuntu. I would like to keep the concept of a disabled root account from Ubuntu, I tried for a long time using trial and error until I read the fucking man page and found the solution to configure PolicyKit for sudo users. I’ve chosen to use a new group I called admin like the one from Ubuntu, although using the sudo group would fit the purpose on my single user machine.
As usual:
adduser <username> sudo
sudo passwd -l root
gconftool --type bool --set /apps/gksu/sudo-mode true
Create the group admin and join it:
addgroup admin
adduser <username> admin
Edit /etc/polkit-1/localauthority.conf.d/50-localauthority.conf:
Change this:
[Configuration]
AdminIdentities=unix-user:0
To this:
[Configuration]
AdminIdentities=unix-user:0;unix-group:admin
That’s it! I hope…