- Overhaul postgresql-README.SUSE and move it from the binary

package to the noarch wrapper package.

OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/postgresql15?expand=0&rev=29
This commit is contained in:
Reinhard Max 2023-05-15 14:51:11 +00:00 committed by Git OBS Bridge
parent ac4cf6cd06
commit 6de6cb9f57
2 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
Change the built-in default socket directory to be /var/run/postgresql.
Change the built-in default socket directory to be /run/postgresql.
For backwards compatibility with (probably non-libpq-based) clients that
might still expect to find the socket in /tmp, also create a socket in
/tmp. This is to resolve communication problems with clients operating
@ -48,7 +48,7 @@ Index: src/include/pg_config_manual.h
*/
#ifndef WIN32
-#define DEFAULT_PGSOCKET_DIR "/tmp"
+#define DEFAULT_PGSOCKET_DIR "/var/run/postgresql"
+#define DEFAULT_PGSOCKET_DIR "/run/postgresql"
#else
#define DEFAULT_PGSOCKET_DIR ""
#endif

View File

@ -3,6 +3,7 @@ Mon May 15 14:20:25 UTC 2023 - Reinhard Max <max@suse.com>
- Overhaul postgresql-README.SUSE and move it from the binary
package to the noarch wrapper package.
- Change the unix domain socket location from /var/run to /run.
-------------------------------------------------------------------
Tue May 9 11:07:48 UTC 2023 - Reinhard Max <max@suse.com>