summaryrefslogtreecommitdiffstats
path: root/debian
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 16:02:51 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 16:02:51 +0000
commit287c3dc1fd490f7058b65cabb00963a85bf795b7 (patch)
tree058368e25dd55b02630214d9599a36174c8899b6 /debian
parentUpdating source format. (diff)
downloadpostgresql-common-287c3dc1fd490f7058b65cabb00963a85bf795b7.tar.xz
postgresql-common-287c3dc1fd490f7058b65cabb00963a85bf795b7.zip
Adding support for Progress Linux to supported-versions.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian')
-rwxr-xr-xdebian/supported-versions11
1 files changed, 11 insertions, 0 deletions
diff --git a/debian/supported-versions b/debian/supported-versions
index 62343be..0300517 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 [release]: 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
@@ -127,6 +135,9 @@ echo "$SUPPORTED_VERSIONS" | while read version release; do
debian-backports)
debian_backports
;;
+ progress-linux)
+ progress_linux
+ ;;
ubuntu)
ubuntu
;;