1 # example configfile for PostgreSQL NSS module
3 # these are entries as used with the BOFHMS tool (sf.net/projects/bofhms)
9 #passwdtable = machines
10 #grouptable = machines
11 # you can use anything postgres accepts as table expression
12 #groupmembertable = accounts JOIN usergroups ON accounts.uid=usergroups.uid JOIN groups ON usergroups.gid=groups.gid
14 querypasswd = SELECT name, 'moo', 1000 as uid, 1000, '', '/vmhome/'|| name, '/usr/local/bin/sipb-xen-consolesh' FROM machines
15 querygroup = SELECT name, NULL, 1000 as gid FROM machines
16 querymembers = SELECT name FROM machines WHERE 1000 = %d
17 queryids = SELECT 1000 AS gid FROM machines LIMIT 0;