diff options
author | Daniel Baumann <daniel@debian.org> | 2011-11-29 16:28:17 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-11-29 16:28:17 +0100 |
commit | e57e3a2bace1f5a5c2f2a5f2115f22945fe5de80 (patch) | |
tree | 7b5b058af9df4c592f89fa4c9b93ab3f444d2f01 /scripts/build/lb_binary_disk | |
parent | c9a7e8b3f60f8f99f6f1b869b6e842e6c4263fb8 (diff) | |
download | vyos-live-build-e57e3a2bace1f5a5c2f2a5f2115f22945fe5de80.tar.gz vyos-live-build-e57e3a2bace1f5a5c2f2a5f2115f22945fe5de80.zip |
Creating progress specific disk info files in progress mode.
Diffstat (limited to 'scripts/build/lb_binary_disk')
-rwxr-xr-x | scripts/build/lb_binary_disk | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/scripts/build/lb_binary_disk b/scripts/build/lb_binary_disk index 8458320b5..96e223300 100755 --- a/scripts/build/lb_binary_disk +++ b/scripts/build/lb_binary_disk @@ -53,9 +53,9 @@ DISTRIBUTION="$(echo ${LB_DISTRIBUTION} | cut -b 1 | tr '[a-z]' '[A-Z]')" DISTRIBUTION="${DISTRIBUTION}$(echo ${LB_DISTRIBUTION} | cut -b 2-)" eval VERSION="$`echo RELEASE_${LB_DISTRIBUTION}`" -TITLE="Debian GNU/Linux" case "${LB_MODE}" in debian) + TITLE="Debian GNU/Linux" STRING="Official Snapshot ${ARCHITECTURE}" TRACE="project/trace/ftp-master.debian.org" ;; @@ -72,7 +72,14 @@ case "${LB_MODE}" in TRACE="" ;; + progress) + TITLE="Progress Linux" + STRING="${VERSION} (${DISTRIBUTION}) - ${ARCHITECTURE}" + TRACE="project/trace/archive-master.progress-linux.org" + ;; + *) + TITLE="Debian GNU/Linux" STRING="Snapshot ${ARCHITECTURE}" TRACE="" ;; |