diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2021-11-02 14:03:40 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2021-11-02 15:08:05 +0000 |
commit | d9974b69f7a9c029bdf2d80243222c78f22739d9 (patch) | |
tree | 7fafcd0cff2884feeea63dad13707a77d7419ea4 /share/build-scripts/debconf.d | |
parent | Releasing version 20210804. (diff) | |
download | compute-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>
Diffstat (limited to '')
-rwxr-xr-x | share/build-scripts/debconf.d/0001-preseed-file | 6 |
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) ;; |