source: trunk/packages/invirt-console-server/files/etc/nss-pgsql.conf.mako @ 1559

Last change on this file since 1559 was 1552, checked in by broder, 16 years ago

Fix some uncaught bugs with invirt-console-server's libnss-pgsql
config

File size: 888 bytes
RevLine 
[887]1<% from invirt.config import structs as cfg %>
[1072]2connectionstring = host=${cfg.db.host} dbname=${cfg.db.dbname} user=${cfg.db.user} port=${cfg.db.port}
[887]3
[1552]4getpwnam = SELECT name, 'x', name, '/consolefs/'|| name, '/usr/bin/invirt-consolesh', machine_id + 1000, machine_id + 1000 FROM machines WHERE name = $1
5getpwuid = SELECT name, 'x', name, '/consolefs/'|| name, '/usr/bin/invirt-consolesh', machine_id + 1000, machine_id + 1000 FROM machines WHERE machine_id + 1000 = $1
6allusers = SELECT name, 'x', name, '/consolefs/'|| name, '/usr/bin/invirt-consolesh', machine_id + 1000, machine_id + 1000 FROM machines
7getgrnam = SELECT name, 'x', machine_id + 1000, NULL FROM machines WHERE name = $1
8getgrgid = SELECT name, 'x', machine_id + 1000, NULL FROM machines WHERE machine_id + 1000 = $1
[1072]9groups_dyn = SELECT NULL LIMIT 0;
[1552]10allgroups = SELECT name, 'x', machine_id + 1000, NULL FROM machines
Note: See TracBrowser for help on using the repository browser.