aports/community/postgresql-timescaledb/postgresql-timescaledb.post-install
2021-09-15 22:56:34 +02:00

18 lines
462 B
Bash

#!/bin/sh
if [ "${0##*.}" = 'post-upgrade' ] && [ "$(apk version -t "$2" '2.4.1-r0')" = '>' ]; then
exit 0
fi
cat >&2 <<EOF
*
* If you need TimescaleDB features licensed under Timescale License
* (TSL module), you have to build postgresql-timescaledb-tsl aport from
* https://gitlab.alpinelinux.org/alpine/aports/-/tree/master/non-free yourself
* Alpine Linux cannot provide non-free licensed software, as defined by OSI,
* in the repositories.
*
EOF
exit 0