diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 01:49:40 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 01:49:40 +0000 |
commit | 788d611f0ad098b68d3cd33adbc15cae5e112bb8 (patch) | |
tree | b2693259f53b250de797f53dcbeacffa09e175d2 /debian/supported-versions | |
parent | Updating source format. (diff) | |
download | postgresql-common-788d611f0ad098b68d3cd33adbc15cae5e112bb8.tar.xz postgresql-common-788d611f0ad098b68d3cd33adbc15cae5e112bb8.zip |
Adding support for Progress Linux to supported-versions.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/supported-versions')
-rwxr-xr-x | debian/supported-versions | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/debian/supported-versions b/debian/supported-versions index 1048827..a5c8f98 100755 --- a/debian/supported-versions +++ b/debian/supported-versions @@ -31,6 +31,7 @@ # debian [release]: use Debian defaults # debian-backports [release]: use Debian Backports defaults # ubuntu [release]: use Ubuntu defaults +# progress-linux: use Progress Linux defaults # pgdg [release]: use defaults for apt.postgresql.org # installed: consider all installed versions supported (determined by # postgresql-server-dev-X packages) @@ -61,6 +62,9 @@ default() { [dD]ebian) debian "$RELEASE" ;; + progress-linux) + progress_linux + ;; *) echo "supported-versions: WARNING! Unknown distribution: $DISTRO" >&2 if echo $ID_LIKE | egrep '(^| )ubuntu($| )' > /dev/null; then @@ -123,6 +127,10 @@ debian_backports() { esac } +progress_linux() { + echo "$DEFAULT" +} + pgdg() { /bin/echo -e "9.4\n9.5\n9.6\n10\n11" } @@ -164,6 +172,9 @@ echo "$SUPPORTED_VERSIONS" | while read version release; do get_release debian_backports "${release:-$RELEASE}" ;; + progress-linux) + progress_linux + ;; ubuntu) get_release ubuntu "${release:-$RELEASE}" |