mirror of
https://github.com/postgres/postgres.git
synced 2025-08-09 17:03:00 +03:00
pg_resetwal: Improve error with wrong/missing data directory
Run chdir() before permission check to get a less confusing error message if the specified data directory does not exist. Reviewed-by: Aleksander Alekseev <aleksander@timescale.com> Discussion: https://www.postgresql.org/message-id/flat/0f3ab4a1-ae80-56e8-3426-6b4a02507687@eisentraut.org
This commit is contained in:
@@ -345,6 +345,10 @@ main(int argc, char *argv[])
|
||||
|
||||
get_restricted_token();
|
||||
|
||||
if (chdir(DataDir) < 0)
|
||||
pg_fatal("could not change directory to \"%s\": %m",
|
||||
DataDir);
|
||||
|
||||
/* Set mask based on PGDATA permissions */
|
||||
if (!GetDataDirectoryCreatePerm(DataDir))
|
||||
pg_fatal("could not read permissions of directory \"%s\": %m",
|
||||
@@ -352,10 +356,6 @@ main(int argc, char *argv[])
|
||||
|
||||
umask(pg_mode_mask);
|
||||
|
||||
if (chdir(DataDir) < 0)
|
||||
pg_fatal("could not change directory to \"%s\": %m",
|
||||
DataDir);
|
||||
|
||||
/* Check that data directory matches our server version */
|
||||
CheckDataVersion();
|
||||
|
||||
|
Reference in New Issue
Block a user