I'm using gnome 3.0 from gnome overlay and I want to exclude some users from gdm login list.
Let's name user1 and user2 unwanted users, from now on.
What I already did:
1. I tried via recomanded way. In /etc/gdm/custom.conf:
Code: Select all
[greeter]
Exclude=user1, user2Code: Select all
<schema>
<key>greeter/Exclude</key>
<signature>s</signature>
<default>bin,root,daemon,adm,lp,sync,shutdown,halt,mail,news,uucp,operator,nobody,nobody4,noaccess,postgres,pvm,rpm,nfsnobody,pcap,user1,user2</default>
</schema>
Code: Select all
usermod -s /sbin/nologin user1
usermod -s /sbin/nologin user2I have no idea what else to try to acomplish my goal. Any hints, please ?

