summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@open-infrastructure.net>2021-11-02 14:03:40 +0000
committerDaniel Baumann <daniel.baumann@open-infrastructure.net>2021-11-02 15:08:05 +0000
commitd9974b69f7a9c029bdf2d80243222c78f22739d9 (patch)
tree7fafcd0cff2884feeea63dad13707a77d7419ea4
parentReleasing version 20210804. (diff)
downloadcompute-tools-d9974b69f7a9c029bdf2d80243222c78f22739d9.tar.xz
compute-tools-d9974b69f7a9c029bdf2d80243222c78f22739d9.zip
Adding 'exit' in debconf build script, thanks to Katharina.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
-rwxr-xr-xshare/build-scripts/debconf.d/0001-preseed-file6
1 files changed, 5 insertions, 1 deletions
diff --git a/share/build-scripts/debconf.d/0001-preseed-file b/share/build-scripts/debconf.d/0001-preseed-file
index d70e4e1..d7e52f0 100755
--- a/share/build-scripts/debconf.d/0001-preseed-file
+++ b/share/build-scripts/debconf.d/0001-preseed-file
@@ -65,7 +65,7 @@ then
if [ -n "${PRESEED_FILES}" ]
then
- db_subst container/preseed-files CHOICES "none, custom, , ${PRESEED_FILES}"
+ db_subst container/preseed-files CHOICES "exit, none, custom, , ${PRESEED_FILES}"
db_settitle container/title
db_input high container/preseed-files || true
@@ -75,6 +75,10 @@ then
PRESEED_FILE="${RET}" # select
case "${PRESEED_FILE}" in
+ exit)
+ exit 1
+ ;;
+
none|custom)
;;