diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2025-01-26 19:00:39 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2025-01-26 19:09:40 +0000 |
commit | 5ac5428a0d47fe313f8d6a18a82dc1b640cbf4e5 (patch) | |
tree | ecd6715ec9a0dc001b925a46573dfff62833bedd /share/build-scripts/debconf.d/0003-debconf | |
parent | Updating manpages references from bookworm to trixie. (diff) | |
download | compute-tools-5ac5428a0d47fe313f8d6a18a82dc1b640cbf4e5.tar.xz compute-tools-5ac5428a0d47fe313f8d6a18a82dc1b640cbf4e5.zip |
Trimming logic for non-free-firmware archive-area handling now that majority of the supported distributions have it.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to 'share/build-scripts/debconf.d/0003-debconf')
-rwxr-xr-x | share/build-scripts/debconf.d/0003-debconf | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/share/build-scripts/debconf.d/0003-debconf b/share/build-scripts/debconf.d/0003-debconf index 36be4e2..bbc24a3 100755 --- a/share/build-scripts/debconf.d/0003-debconf +++ b/share/build-scripts/debconf.d/0003-debconf @@ -523,12 +523,12 @@ Archive_areas () ARCHIVE_AREAS="${RET}" case "${PARENT_DISTRIBUTION}" in - bookworm|trixie|testing|sid) - ARCHIVE_AREAS_ALL="main, contrib, non-free, non-free-firmware" + buster|bullseye) + ARCHIVE_AREAS_ALL="main, contrib, non-free" ;; *) - ARCHIVE_AREAS_ALL="main, contrib, non-free" + ARCHIVE_AREAS_ALL="main, contrib, non-free, non-free-firmware" ;; esac @@ -583,12 +583,12 @@ Parent_archive_areas () PARENT_ARCHIVE_AREAS="${RET}" # multiselect (w/o empty) case "${PARENT_DISTRIBUTION}" in - bookworm|trixie|testing|sid) - PARENT_ARCHIVE_AREAS_ALL="main, contrib, non-free, non-free-firmware" + buster|bullseye) + PARENT_ARCHIVE_AREAS_ALL="main, contrib, non-free" ;; *) - PARENT_ARCHIVE_AREAS_ALL="main, contrib, non-free" + PARENT_ARCHIVE_AREAS_ALL="main, contrib, non-free, non-free-firmware" ;; esac |