mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-26 03:42:37 +01:00
This is the first step to provide and allow installing multiple major versions of PostgreSQL in parallel. See https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/27275
13 lines
214 B
Bash
13 lines
214 B
Bash
#!/bin/sh
|
|
|
|
majorver=${1%%.*}
|
|
|
|
cat >&2 <<EOF
|
|
*
|
|
* If you want to use JIT in PostgreSQL, install postgresql$majorver-jit or
|
|
* postgresql-jit (if you didn't install specific major version of postgresql).
|
|
*
|
|
EOF
|
|
|
|
exit 0
|