diff options
author | Richard Nelson <unixabg@gmail.com> | 2012-12-14 17:40:16 -0600 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2013-05-06 14:50:02 +0200 |
commit | 960d954aeb754bb44d1cff540439fa73a2b0a566 (patch) | |
tree | 69c961016da671d157e0a1b2ec71402e97a1f429 /frontends/cgi/live-build-cgi | |
parent | bd22f9c8648332f4533be4bf8fb65c0f922bf4ea (diff) | |
download | vyos-live-build-960d954aeb754bb44d1cff540439fa73a2b0a566.tar.gz vyos-live-build-960d954aeb754bb44d1cff540439fa73a2b0a566.zip |
Update l-b-cgi frontend to support new git config structure.
Diffstat (limited to 'frontends/cgi/live-build-cgi')
-rwxr-xr-x | frontends/cgi/live-build-cgi | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/frontends/cgi/live-build-cgi b/frontends/cgi/live-build-cgi index 55ce08302..23f0c89ca 100755 --- a/frontends/cgi/live-build-cgi +++ b/frontends/cgi/live-build-cgi @@ -64,8 +64,7 @@ else _LB_CGIPACKAGES=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])cgipackages=[-0-9a-zA-Z. _+]+' | cut -f 2 -d '=' | head -n1) # CGI Config for git - _LB_CONFIG=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])config=[-a-z.]+' | cut -f 2 -d '=' | head -n1) - _LB_CONFIG="git://live.debian.net/git/${_LB_CONFIG}" + _LB_CONFIG=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])config=[-a-z]+' | cut -f 2 -d '=' | head -n1) # Standard options LB_BINARY_IMAGES=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])binary_images=[-a-z]+' | cut -f 2 -d '=' | head -n1) |