blob: b2da22124c8bea2e4d94f0411164e4175632fa6a (
plain)
1
2
3
4
5
6
7
8
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."
}
|