diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-04-21 20:46:22 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-04-21 20:46:22 +0000 |
commit | 1b4504ced27d902208114bdc936fef7b6e33d419 (patch) | |
tree | 5b36cdcb3274b7406e6dfd1d401b58713853e72c | |
parent | b5498a26deba8d3112dbf4da5375ccd9db4ff375 (diff) | |
download | postgresql-1b4504ced27d902208114bdc936fef7b6e33d419.tar.gz postgresql-1b4504ced27d902208114bdc936fef7b6e33d419.zip |
Remove from TODO ability to edit pg_hba.conf, but add GRANT connection
permission item:
< o %Allow pg_hba.conf settings to be controlled via SQL
> o %Allow per-database permissions to be set via GRANT
< This would add a function to load the SQL table from
< pg_hba.conf, and one to writes its contents to the flat file.
< The table should have a line number that is a float so rows
< can be inserted between existing rows, e.g. row 2.5 goes
< between row 2 and row 3.
> Allow database connection checks based on GRANT rules in
> addition to the existing access checks in pg_hba.conf.
-rw-r--r-- | doc/TODO | 11 | ||||
-rw-r--r-- | doc/src/FAQ/TODO.html | 11 |
2 files changed, 8 insertions, 14 deletions
@@ -2,7 +2,7 @@ PostgreSQL TODO List ==================== Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us) -Last updated: Wed Apr 19 18:35:36 EDT 2006 +Last updated: Fri Apr 21 16:45:19 EDT 2006 The most recent version of this document can be viewed at http://www.postgresql.org/docs/faqs.TODO.html. @@ -79,13 +79,10 @@ Administration Currently, if a variable is commented out, it keeps the previous uncommented value until a server restarted. - o %Allow pg_hba.conf settings to be controlled via SQL + o %Allow per-database permissions to be set via GRANT - This would add a function to load the SQL table from - pg_hba.conf, and one to writes its contents to the flat file. - The table should have a line number that is a float so rows - can be inserted between existing rows, e.g. row 2.5 goes - between row 2 and row 3. + Allow database connection checks based on GRANT rules in + addition to the existing access checks in pg_hba.conf. o Allow pg_hba.conf to specify host names along with IP addresses diff --git a/doc/src/FAQ/TODO.html b/doc/src/FAQ/TODO.html index 9b0a4b49d61..4b635455deb 100644 --- a/doc/src/FAQ/TODO.html +++ b/doc/src/FAQ/TODO.html @@ -8,7 +8,7 @@ <body bgcolor="#FFFFFF" text="#000000" link="#FF0000" vlink="#A00000" alink="#0000FF"> <h1><a name="section_1">PostgreSQL TODO List</a></h1> <p>Current maintainer: Bruce Momjian (<a href="mailto:pgman@candle.pha.pa.us">pgman@candle.pha.pa.us</a>)<br/> -Last updated: Wed Apr 19 18:35:36 EDT 2006 +Last updated: Fri Apr 21 16:45:19 EDT 2006 </p> <p>The most recent version of this document can be viewed at<br/> <a href="http://www.postgresql.org/docs/faqs.TODO.html">http://www.postgresql.org/docs/faqs.TODO.html</a>. @@ -75,12 +75,9 @@ first. <p> Currently, if a variable is commented out, it keeps the previous uncommented value until a server restarted. </p> - </li><li>%Allow pg_hba.conf settings to be controlled via SQL -<p> This would add a function to load the SQL table from - pg_hba.conf, and one to writes its contents to the flat file. - The table should have a line number that is a float so rows - can be inserted between existing rows, e.g. row 2.5 goes - between row 2 and row 3. + </li><li>%Allow per-database permissions to be set via GRANT +<p> Allow database connection checks based on GRANT rules in + addition to the existing access checks in pg_hba.conf. </p> </li><li>Allow pg_hba.conf to specify host names along with IP addresses <p> Host name lookup could occur when the postmaster reads the |