summaryrefslogtreecommitdiff
path: root/helpers/lh_binary_debian-installer
diff options
context:
space:
mode:
authorChris Lamb <chris@chris-lamb.co.uk>2008-06-19 19:03:10 +0100
committerDaniel Baumann <daniel@debian.org>2011-03-09 19:03:35 +0100
commit5f3168deb73fd1e92bec83eb839b5d7381b6b023 (patch)
tree33e58fb3c82dc71c77cb8865731fbb275f5512e2 /helpers/lh_binary_debian-installer
parenta5e675792ae54c66b7c9ca470d3e47bc45960272 (diff)
downloadvyos-live-build-5f3168deb73fd1e92bec83eb839b5d7381b6b023.tar.gz
vyos-live-build-5f3168deb73fd1e92bec83eb839b5d7381b6b023.zip
Revert aborting live d-i installation if minimal/stripped is selected and instead attempt to not break the chroot too much in this case
Diffstat (limited to 'helpers/lh_binary_debian-installer')
-rwxr-xr-xhelpers/lh_binary_debian-installer11
1 files changed, 1 insertions, 10 deletions
diff --git a/helpers/lh_binary_debian-installer b/helpers/lh_binary_debian-installer
index 3a16a1905..ee437ab3b 100755
--- a/helpers/lh_binary_debian-installer
+++ b/helpers/lh_binary_debian-installer
@@ -35,22 +35,13 @@ fi
# Check d-i configuration
case "${LH_DEBIAN_INSTALLER}" in
- enabled|cdrom|netinst|netboot|businesscard)
+ enabled|cdrom|netinst|netboot|businesscard|live)
;;
disabled)
exit 0
;;
- live)
- case "${LH_PACKAGES_LISTS}" in
- stripped|minimal)
- Echo_error "live d-i installation is incompatbile with stripped and minimal"
- exit 1
- ;;
- esac
- ;;
-
*)
Echo_error "debian-installer flavour ${LH_DEBIAN_INSTALLER} not supported."
exit 1