Small patch removing the "crypt" auth from sample pg_hba.conf
Started by Andreas 'ads' Scherbaumalmost 17 years ago2 messages
Hello,
although the "crypt" auth functionality is removed i 8.4 i found a
remnant in the sample pg_hba.conf file. The attached patch removes the
keyword from the config file.
Kind regards
--
Andreas 'ads' Scherbaum
German PostgreSQL User Group
European PostgreSQL User Group - Board of Directors
Attachments:
pg_hba.conf.sample-crypt.difftext/x-patch; name=pg_hba.conf.sample-crypt.diffDownload
Index: src/backend/libpq/pg_hba.conf.sample
===================================================================
RCS file: /projects/cvsroot/pgsql/src/backend/libpq/pg_hba.conf.sample,v
retrieving revision 1.66
diff -u -3 -p -r1.66 pg_hba.conf.sample
--- src/backend/libpq/pg_hba.conf.sample 20 Nov 2008 11:48:26 -0000 1.66
+++ src/backend/libpq/pg_hba.conf.sample 31 Mar 2009 22:02:53 -0000
@@ -34,7 +34,7 @@
# the number of significant bits in the mask. Alternatively, you can write
# an IP address and netmask in separate columns to specify the set of hosts.
#
-# METHOD can be "trust", "reject", "md5", "crypt", "password", "gss", "sspi",
+# METHOD can be "trust", "reject", "md5", "password", "gss", "sspi",
# "krb5", "ident", "pam", "ldap" or "cert". Note that "password" sends passwords
# in clear text; "md5" is preferred since it sends encrypted passwords.
#
Re: Small patch removing the "crypt" auth from sample pg_hba.conf
"Andreas 'ads' Scherbaum" <adsmail@wars-nicht.de> writes:
although the "crypt" auth functionality is removed i 8.4 i found a
remnant in the sample pg_hba.conf file. The attached patch removes the
keyword from the config file.
Done, thanks.
regards, tom lane