diff options
author | Richard Nelson <unixabg@gmail.com> | 2013-02-23 17:29:44 -0600 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2013-04-09 05:52:09 +0200 |
commit | a8d0ae85c1ee839bfcc7a6ad512c9a7d5a21fe1a (patch) | |
tree | 9ca07229ef0074c70a9635da9631760128f3f929 | |
parent | edcb3c9208960ac8ff4fe3d0c3f1b9a593a22911 (diff) | |
download | vyos-live-build-a8d0ae85c1ee839bfcc7a6ad512c9a7d5a21fe1a.tar.gz vyos-live-build-a8d0ae85c1ee839bfcc7a6ad512c9a7d5a21fe1a.zip |
Removing quotes around _CGI_CONFIG_APPEND to handle multiple parameters correctly on l-b-cgi frontend.
-rwxr-xr-x | frontends/cgi/live-build-cgi.cron | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/cgi/live-build-cgi.cron b/frontends/cgi/live-build-cgi.cron index e01dfb10a..447e15365 100755 --- a/frontends/cgi/live-build-cgi.cron +++ b/frontends/cgi/live-build-cgi.cron @@ -96,7 +96,7 @@ then then cd "${_BUILD_PATH}" # Do config with git and stack on config file params to build - lb config "${_CGI_CONFIG_APPEND}" --distribution "${LB_DISTRIBUTION}" --architectures "${LB_ARCHITECTURES}" --archive-areas "${LB_ARCHIVE_AREAS}" --chroot-filesystem "${LB_CHROOT_FILESYSTEM}" --linux-flavours "${LB_LINUX_FLAVOURS}" --security "${LB_SECURITY}" --apt-indices "${LB_APT_INDICES}" --bootappend-install "${LB_BOOTAPPEND_INSTALL}" --bootappend-live "${LB_BOOTAPPEND_LIVE}" --bootloader "${LB_BOOTLOADER}" --debian-installer "${LB_DEBIAN_INSTALLER}" --iso-application "${LB_ISO_APPLICATION}" --iso-preparer "${LB_ISO_PREPARER}" --iso-publisher "${LB_ISO_PUBLISHER}" --iso-volume "${LB_ISO_VOLUME}" --memtest "${LB_MEMTEST}" --net-root-path "${LB_NET_ROOT_PATH}" --net-root-server "${LB_NET_ROOT_SERVER}" --source-images "${LB_SOURCE_IMAGES}" --source "${LB_SOURCE}" + lb config ${_CGI_CONFIG_APPEND} --distribution "${LB_DISTRIBUTION}" --architectures "${LB_ARCHITECTURES}" --archive-areas "${LB_ARCHIVE_AREAS}" --chroot-filesystem "${LB_CHROOT_FILESYSTEM}" --linux-flavours "${LB_LINUX_FLAVOURS}" --security "${LB_SECURITY}" --apt-indices "${LB_APT_INDICES}" --bootappend-install "${LB_BOOTAPPEND_INSTALL}" --bootappend-live "${LB_BOOTAPPEND_LIVE}" --bootloader "${LB_BOOTLOADER}" --debian-installer "${LB_DEBIAN_INSTALLER}" --iso-application "${LB_ISO_APPLICATION}" --iso-preparer "${LB_ISO_PREPARER}" --iso-publisher "${LB_ISO_PUBLISHER}" --iso-volume "${LB_ISO_VOLUME}" --memtest "${LB_MEMTEST}" --net-root-path "${LB_NET_ROOT_PATH}" --net-root-server "${LB_NET_ROOT_SERVER}" --source-images "${LB_SOURCE_IMAGES}" --source "${LB_SOURCE}" _ERRORCONFIG="${?}" else echo "Config stage skipped. The git clone produced an error: ${_ERRORGIT}" > "${_BUILD_PATH}"/log |