diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2021-11-02 14:15:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2021-11-02 16:55:15 +0000 |
commit | 9bf0a1da5c0164f25eb144454bc27cccbc98a47c (patch) | |
tree | 521b2bb61eafdd446378300bb6a71daa263b261c | |
parent | Adding 'exit' in debconf build script, thanks to Katharina. (diff) | |
download | compute-tools-9bf0a1da5c0164f25eb144454bc27cccbc98a47c.tar.xz compute-tools-9bf0a1da5c0164f25eb144454bc27cccbc98a47c.zip |
Sorting preseed-file options in debconf build script.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to '')
-rwxr-xr-x | share/build-scripts/debconf.d/0001-preseed-file | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/share/build-scripts/debconf.d/0001-preseed-file b/share/build-scripts/debconf.d/0001-preseed-file index d7e52f0..78c10f0 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 "exit, none, custom, , ${PRESEED_FILES}" + db_subst container/preseed-files CHOICES "custom, exit, none, , ${PRESEED_FILES}" db_settitle container/title db_input high container/preseed-files || true @@ -75,11 +75,11 @@ then PRESEED_FILE="${RET}" # select case "${PRESEED_FILE}" in - exit) - exit 1 + custom|none) ;; - none|custom) + exit) + exit 1 ;; *) |