aboutsummaryrefslogtreecommitdiffstats
path: root/community/postgresql-bdr/initdb.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/postgresql-bdr/initdb.patch')
-rw-r--r--community/postgresql-bdr/initdb.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/community/postgresql-bdr/initdb.patch b/community/postgresql-bdr/initdb.patch
new file mode 100644
index 00000000000..e919d9fc1bd
--- /dev/null
+++ b/community/postgresql-bdr/initdb.patch
@@ -0,0 +1,18 @@
+--- ./src/bin/initdb/initdb.c.orig 2013-09-09 14:38:21.712409752 +0000
++++ ./src/bin/initdb/initdb.c 2013-09-09 14:40:19.453755379 +0000
+@@ -3652,14 +3652,6 @@
+ strlcpy(bin_dir, argv[0], sizeof(bin_dir));
+ get_parent_directory(bin_dir);
+
+- 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"),
+- 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, pgdata_native, QUOTE_PATH);
+-
++ printf(_("\nSuccess.\n\n"));
+ return 0;
+ }