Commit 2200713a authored by Bruce Momjian's avatar Bruce Momjian

initdb: only recommend pg_ctl to start the server

Previously we mentioned the 'postgres' binary method as well.
parent 23c33198
...@@ -3641,11 +3641,7 @@ main(int argc, char *argv[]) ...@@ -3641,11 +3641,7 @@ main(int argc, char *argv[])
get_parent_directory(bin_dir); get_parent_directory(bin_dir);
printf(_("\nSuccess. You can now start the database server using:\n\n" printf(_("\nSuccess. You can now start the database server using:\n\n"
" %s%s%spostgres%s -D %s%s%s\n"
"or\n"
" %s%s%spg_ctl%s -D %s%s%s -l logfile start\n\n"), " %s%s%spg_ctl%s -D %s%s%s -l logfile start\n\n"),
QUOTE_PATH, bin_dir, (strlen(bin_dir) > 0) ? DIR_SEP : "", QUOTE_PATH,
QUOTE_PATH, pgdata_native, QUOTE_PATH,
QUOTE_PATH, bin_dir, (strlen(bin_dir) > 0) ? DIR_SEP : "", QUOTE_PATH, QUOTE_PATH, bin_dir, (strlen(bin_dir) > 0) ? DIR_SEP : "", QUOTE_PATH,
QUOTE_PATH, pgdata_native, QUOTE_PATH); QUOTE_PATH, pgdata_native, QUOTE_PATH);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment