mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-22 02:35:23 +03:00
It's a PostgreSQL extension, there's a convention to prefix their pkgname with postgresql-.
10 lines
146 B
Bash
10 lines
146 B
Bash
#!/bin/sh
|
|
|
|
cat <<EOF
|
|
*
|
|
* Add the following line to postgresql.conf and restart PostgreSQL:
|
|
* shared_preload_libraries = 'pg_cron'
|
|
*
|
|
EOF
|
|
|
|
exit 0
|