|
12 | 12 | * This is a C implementation of the previous shell script for setting up a
|
13 | 13 | * PostgreSQL cluster location, and should be highly compatible with it.
|
14 | 14 | *
|
15 |
| - * $Header: /cvsroot/pgsql/src/bin/initdb/initdb.c,v 1.4 2003/11/13 01:36:00 tgl Exp $ |
| 15 | + * $Header: /cvsroot/pgsql/src/bin/initdb/initdb.c,v 1.5 2003/11/1315:01:40 momjian Exp $ |
16 | 16 | *
|
17 | 17 | * TODO:
|
18 | 18 | * - clean up find_postgres code and return values
|
@@ -2275,6 +2275,11 @@ main(int argc, char *argv[])
|
2275 | 2275 | check_input(features_file);
|
2276 | 2276 | check_input(system_views_file);
|
2277 | 2277 |
|
| 2278 | +printf("The files belonging to this database system will be owned " |
| 2279 | +"by user \"%s\".\n" |
| 2280 | +"This user must also own the server process.\n\n", |
| 2281 | +effective_user); |
| 2282 | + |
2278 | 2283 | setlocales();
|
2279 | 2284 |
|
2280 | 2285 | if (strcmp(lc_ctype,lc_collate)==0&&
|
|