diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 13:42:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 12:32:31 +0000 |
commit | 7f22b4c05a2d781e0e21af7994f17e2dff546c21 (patch) | |
tree | 734fb65f614127b1fafff1f9b738de64c3eb7d5c | |
parent | Updating source format. (diff) | |
download | postgresql-common-7f22b4c05a2d781e0e21af7994f17e2dff546c21.tar.xz postgresql-common-7f22b4c05a2d781e0e21af7994f17e2dff546c21.zip |
Adding support for Progress Linux to supported-versions.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-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 9edb220..6515806 100755 --- a/debian/supported-versions +++ b/debian/supported-versions @@ -30,6 +30,7 @@ # (as determined by os-release) # debian: use Debian defaults # debian-backports: use Debian Backports defaults +# progress-linux: use Progress Linux defaults # ubuntu: use Ubuntu defaults # pgdg: use defaults for apt.postgresql.org # installed: consider all installed versions supported (determined by @@ -54,6 +55,9 @@ default() { [dD]ebian) debian ;; + progress-linux) + progress_linux + ;; *) echo "supported-versions: WARNING! Unknown distribution ID in /etc/os-release: $ID" >&2 if echo $ID_LIKE | grep -E '(^| )ubuntu($| )' > /dev/null; then @@ -82,6 +86,10 @@ debian_backports() { echo "$DEFAULT" } +progress_linux() { + echo "$DEFAULT" +} + pgdg() { cat <<-EOF 10 @@ -128,6 +136,9 @@ echo "$SUPPORTED_VERSIONS" | while read version release; do debian-backports) debian_backports ;; + progress-linux) + progress_linux + ;; ubuntu) ubuntu ;; |