Jakub Jirutka 0201ddc3ca community/postgresql-bdr: move from main
The last release was in 2017, i.e. this project is dead and we can
hardly provide support that is expected from packages in the main
repository. I wanted to remove it, but Leonardo Arena objected:

> These packages are currently deployed in hundreds of installations in
> a large corporate network which is contributing to the Alpine project.
> So it will be detrimental for Alpine to remove them.

For this reason, we keep it in aports and just move to the community
repository.

The only package that depends on postgresql-bdr is
postgresql-bdr-extension.
2021-11-16 23:09:48 +01:00

19 lines
716 B
Diff

--- ./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;
}