Actually get the password fields right in invirt-console-server's invirt-console-server/0.0.13
authorEvan Broder <broder@mit.edu>
Tue, 11 Nov 2008 03:58:25 +0000 (22:58 -0500)
committerEvan Broder <broder@mit.edu>
Tue, 11 Nov 2008 03:58:25 +0000 (22:58 -0500)
libnss-pgsql config

svn path=/trunk/packages/invirt-console-server/; revision=1610

debian/changelog
files/etc/nss-pgsql.conf.mako

index 23c976f..9ccb877 100644 (file)
@@ -1,3 +1,9 @@
+invirt-console-server (0.0.13) unstable; urgency=low
+
+  * Actually get the password fields right for libnss-pgsql
+
+ -- Evan Broder <broder@mit.edu>  Mon, 10 Nov 2008 22:57:49 -0500
+
 invirt-console-server (0.0.12) unstable; urgency=low
 
   * Fix the libnss-pgsql config - don't suggest that the password should
 invirt-console-server (0.0.12) unstable; urgency=low
 
   * Fix the libnss-pgsql config - don't suggest that the password should
index d7f1aff..5ed9f2e 100644 (file)
@@ -1,10 +1,10 @@
 <% from invirt.config import structs as cfg %>
 connectionstring = host=${cfg.db.host} dbname=${cfg.db.dbname} user=${cfg.db.user} port=${cfg.db.port}
 
 <% from invirt.config import structs as cfg %>
 connectionstring = host=${cfg.db.host} dbname=${cfg.db.dbname} user=${cfg.db.user} port=${cfg.db.port}
 
-getpwnam = SELECT name, NULL, name, '/consolefs/'|| name, '/usr/bin/invirt-consolesh', machine_id + 1000, machine_id + 1000 FROM machines WHERE name = $1
-getpwuid = SELECT name, NULL, name, '/consolefs/'|| name, '/usr/bin/invirt-consolesh', machine_id + 1000, machine_id + 1000 FROM machines WHERE machine_id + 1000 = $1
-allusers = SELECT name, NULL, name, '/consolefs/'|| name, '/usr/bin/invirt-consolesh', machine_id + 1000, machine_id + 1000 FROM machines
-getgrnam = SELECT name, NULL, machine_id + 1000, NULL FROM machines WHERE name = $1
-getgrgid = SELECT name, NULL, machine_id + 1000, NULL FROM machines WHERE machine_id + 1000 = $1
+getpwnam = SELECT name, '*', name, '/consolefs/'|| name, '/usr/bin/invirt-consolesh', machine_id + 1000, machine_id + 1000 FROM machines WHERE name = $1
+getpwuid = SELECT name, '*', name, '/consolefs/'|| name, '/usr/bin/invirt-consolesh', machine_id + 1000, machine_id + 1000 FROM machines WHERE machine_id + 1000 = $1
+allusers = SELECT name, '*', name, '/consolefs/'|| name, '/usr/bin/invirt-consolesh', machine_id + 1000, machine_id + 1000 FROM machines
+getgrnam = SELECT name, 'x', machine_id + 1000, NULL FROM machines WHERE name = $1
+getgrgid = SELECT name, 'x', machine_id + 1000, NULL FROM machines WHERE machine_id + 1000 = $1
 groups_dyn = SELECT NULL LIMIT 0;
 groups_dyn = SELECT NULL LIMIT 0;
-allgroups = SELECT name, NULL, machine_id + 1000, NULL FROM machines
+allgroups = SELECT name, 'x', machine_id + 1000, NULL FROM machines