diff options
author | Roland Clobus <rclobus@rclobus.nl> | 2020-11-11 11:21:34 +0100 |
---|---|---|
committer | Roland Clobus <rclobus@rclobus.nl> | 2020-11-18 16:37:43 +0000 |
commit | c4b239caf51b39ff21b69de1a81f79732594a2a3 (patch) | |
tree | 0860005dfb1700df0ba89be1ab37679e0f298cf0 | |
parent | 6e4e10f0712a211d947185d9847c3f211210be25 (diff) | |
download | vyos-live-build-c4b239caf51b39ff21b69de1a81f79732594a2a3.tar.gz vyos-live-build-c4b239caf51b39ff21b69de1a81f79732594a2a3.zip |
Bugfix: Live installer can run without LB_CACHE_PACKAGES
-rwxr-xr-x | functions/configuration.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions/configuration.sh b/functions/configuration.sh index f5460d586..bd348c45d 100755 --- a/functions/configuration.sh +++ b/functions/configuration.sh @@ -736,7 +736,7 @@ Validate_config_dependencies () exit 1 fi - if [ "${LB_DEBIAN_INSTALLER}" != "none" ]; then + if [ "${LB_DEBIAN_INSTALLER}" != "none" ] && [ "${LB_DEBIAN_INSTALLER}" != "live" ]; then # d-i true, no caching if ! In_list "bootstrap" ${LB_CACHE_STAGES} || [ "${LB_CACHE}" != "true" ] || [ "${LB_CACHE_PACKAGES}" != "true" ] then |