summarylogtreecommitdiffstats
path: root/citus-git.install
diff options
context:
space:
mode:
Diffstat (limited to 'citus-git.install')
-rw-r--r--citus-git.install9
1 files changed, 9 insertions, 0 deletions
diff --git a/citus-git.install b/citus-git.install
new file mode 100644
index 000000000000..b2da22124c8b
--- /dev/null
+++ b/citus-git.install
@@ -0,0 +1,9 @@
+post_install() {
+ echo "To use citus, edit your /var/lib/postgres/data/postgresql.conf
+to uncoment 'shared_preload_libraries' and add required library:
+ shared_preload_libraries = 'citus'
+If you already have any other shared library preloaded in your
+postgres, add it as the first lib (as recommended by citus):
+ shared_preload_libraries = 'citus, otherext'
+Then restart postgres."
+}