summaryrefslogtreecommitdiff
path: root/scripts/build/installer_debian-installer
diff options
context:
space:
mode:
authorjnqnfe <jnqnfe@gmail.com>2015-01-05 16:53:53 +0000
committerRaphaƫl Hertzog <hertzog@debian.org>2020-03-05 11:36:55 +0000
commitfcafaede192e150daaf61591aef57edf3c2983fc (patch)
tree72132cd41973c1bf57bc3498ff8f0d20dc4a959b /scripts/build/installer_debian-installer
parent6002f89b67424a36f9e6bacdef260df0a0683b74 (diff)
downloadvyos-live-build-fcafaede192e150daaf61591aef57edf3c2983fc.tar.gz
vyos-live-build-fcafaede192e150daaf61591aef57edf3c2983fc.zip
simplify --debian-installer choices
`false` and `none` make no sense as choices for this option. Here we replace `false` with `none`, and remove `true`. Note that `true` was treated as an alias for netinst (see the changes to source_disk and and binary_disk). For backwards compatibility we still allow `true` and `false` by converting them to `netinst` and `none` respectively, whilst printing a warning to encourage users to move to `netinst`/`none`. Gbp-Dch: Short Closes: #952864
Diffstat (limited to 'scripts/build/installer_debian-installer')
-rwxr-xr-xscripts/build/installer_debian-installer4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/build/installer_debian-installer b/scripts/build/installer_debian-installer
index 1f3cf7574..9f173af5d 100755
--- a/scripts/build/installer_debian-installer
+++ b/scripts/build/installer_debian-installer
@@ -36,10 +36,10 @@ fi
# Check d-i configuration
case "${LB_DEBIAN_INSTALLER}" in
- true|cdrom|netinst|netboot|businesscard|live)
+ cdrom|netinst|netboot|businesscard|live)
;;
- false)
+ none)
exit 0
;;