Gentoo Archives: gentoo-user

From: "Stefan G. Weichinger" <lists@×××××.at>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] systemd-197-r1 starts gdm-3.6.2
Date: Thu, 31 Jan 2013 18:17:35
Message-Id: 510AB530.6060401@xunil.at
In Reply to: Re: [gentoo-user] systemd-197-r1 starts gdm-3.6.2 by "Canek Peláez Valdés"
1 Am 31.01.2013 19:06, schrieb Canek Peláez Valdés:
2
3 > I tries in the consoles c11, c12, and then on the c13 and 14.
4
5 Yes, I noticed that trying-around as well ...
6
7 > I don't
8 > know why, but it would seem that gdm-password fails to authenticate
9 > you.
10
11 Just changed my password to something simple without german umlauts or
12 special characters to rule out charset-topics. No change.
13
14 > Do you have anything in /etc/polkit-1/rules.d/? I only have
15 > 50-default.rules, which Gentoo adds.
16
17 Same here.
18
19 > Also check
20 > /usr/share/polkit-1/rules.d.
21
22 These 2 files:
23
24 # cat 01-org.freedesktop.NetworkManager.settings.modify.system.rules
25 // Let users in plugdev group modify NetworkManager
26 polkit.addRule(function(action, subject) {
27 if (action.id ==
28 "org.freedesktop.NetworkManager.settings.modify.system" &&
29 subject.isInGroup("plugdev") && subject.active) {
30 return "yes";
31 }
32 });
33
34 # cat gnome-control-center.rules
35 polkit.addRule(function(action, subject) {
36 if (action.id == "org.freedesktop.hostname1.set-static-hostname" &&
37 subject.local &&
38 subject.active &&
39 subject.isInGroup ("wheel")) {
40 return polkit.Result.YES;
41 }
42 });
43
44 -
45
46 My user "sgw" is members of both mentioned groups, btw:
47
48 # getent group wheel
49 wheel:x:10:root,sgw
50
51 # getent group plugdev
52 plugdev:x:443:haldaemon,sgw
53
54 S

Replies

Subject Author
Re: [gentoo-user] systemd-197-r1 starts gdm-3.6.2 "Canek Peláez Valdés" <caneko@×××××.com>