1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-26 20:55:19 +03:00
aports/community/postgresql13/postgresql13.post-install
2022-11-22 00:02:58 +01:00

12 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