mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-08 14:57:11 +02:00
https://github.com/citusdata/pg_cron Cron-based job scheduler for PostgreSQL 9.5+ Review notes: Cleaned up APKBUILD, shorthened post-install message and claimed the contributor as maintainer. @jirutka
11 lines
146 B
Bash
11 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
|