From: | Andrew Dunstan <andrew(at)dunslane(dot)net> |
---|---|
To: | Postgresql Hackers <pgsql-hackers(at)postgresql(dot)org>, "Patches (PostgreSQL)" <pgsql-patches(at)postgresql(dot)org> |
Subject: | Re: [HACKERS] initdb |
Date: | 2003-10-01 21:10:51 |
Message-ID: | 3F7B42DB.7080000@dunslane.net |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers pgsql-patches |
Peter Eisentraut wrote:
>Andrew Dunstan writes:
>
>
>
>>So if the data directory previously existed and was empty, we don't
>>clean it out on error, even if we didn't use the noclean flag. Is this
>>intended behaviour or a bug? (If a bug it's trivially easy to fix.)
>>
>>
>
>If the data directory already existed, we don't want to delete it. We
>should possibly delete the content, though.
>
>
>
yes, that's what I meant.
Here's a patch which should work, I think:
Index: src/bin/initdb/initdb.sh
===================================================================
RCS file: /projects/cvsroot/pgsql-server/src/bin/initdb/initdb.sh,v
retrieving revision 1.203
diff -c -w -r1.203 initdb.sh
*** src/bin/initdb/initdb.sh 27 Sep 2003 16:27:57 -0000 1.203
--- src/bin/initdb/initdb.sh 1 Oct 2003 21:06:07 -0000
***************
*** 44,49 ****
--- 44,53 ----
if [ "$made_new_pgdata" = yes ]; then
echo "$CMDNAME: removing data directory \"$PGDATA\"" 1>&2
rm -rf "$PGDATA" || echo "$CMDNAME: failed" 1>&2
+ else
+ echo "$CMDNAME: removing contents of data directory
\"$PGDATA\"" 1>&2
+ rm -rf "$PGDATA"/* || echo "$CMDNAME: failed" 1>&2
fi
else
echo "$CMDNAME: data directory \"$PGDATA\" not removed at
user's request" 1>&2
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2003-10-01 21:36:28 | Re: invalid tid errors in latest 7.3.4 stable. |
Previous Message | Peter Eisentraut | 2003-10-01 20:54:32 | Re: initdb |
From | Date | Subject | |
---|---|---|---|
Next Message | Joe Conway | 2003-10-01 23:09:26 | Re: tablefunc functions in postgresql |
Previous Message | Peter Eisentraut | 2003-10-01 20:54:32 | Re: initdb |