diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-08-27 04:17:40 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-08-27 04:17:40 +0000 |
commit | 5d47879051c3b0ee6848ff4576ca01b85142beab (patch) | |
tree | 10451ce81a521c949c4fadaab3674bb4f128b106 | |
parent | Making distribution detection and version handling more robust. (diff) | |
download | progress-linux-5d47879051c3b0ee6848ff4576ca01b85142beab.tar.xz progress-linux-5d47879051c3b0ee6848ff4576ca01b85142beab.zip |
Adding support for Debian 12 (bookworm).
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rwxr-xr-x | debian/progress-linux.config | 14 | ||||
-rwxr-xr-x | debian/progress-linux.postinst | 3 |
2 files changed, 17 insertions, 0 deletions
diff --git a/debian/progress-linux.config b/debian/progress-linux.config index 4532d78..12dd625 100755 --- a/debian/progress-linux.config +++ b/debian/progress-linux.config @@ -53,6 +53,13 @@ then Run_debconf ;; + 7*) + RELEASE="7" + CODENAME="graograman" + + Run_debconf + ;; + *) echo "W: unsupported debian release" ;; @@ -73,6 +80,13 @@ else Run_debconf ;; + 12.*|bookworm/sid) + RELEASE="7" + CODENAME="graograman" + + Run_debconf + ;; + *) echo "W: unsupported debian release" ;; diff --git a/debian/progress-linux.postinst b/debian/progress-linux.postinst index b102b48..9ff920b 100755 --- a/debian/progress-linux.postinst +++ b/debian/progress-linux.postinst @@ -212,6 +212,9 @@ case "${1}" in 11.*|bullseye/sid) ;; + 12.*|bookworm/sid) + ;; + *) echo "W: unsupported debian release" |