# HG changeset patch # User "Yann E. MORIN" # Date 1231786474 0 # Node ID becbbc7f5b729742ad728e8fe7a3eb4f672b8cba # Parent ff9c81b84c4225cbde041921aa1a1759c0e7dd80 Don't print anything about LAN mirror if it is not used. Don't re-compute a variable that has already been computed. /trunk/scripts/functions | 16 9 7 0 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff -r ff9c81b84c42 -r becbbc7f5b72 scripts/functions --- a/scripts/functions Sun Jan 11 18:05:25 2009 +0000 +++ b/scripts/functions Mon Jan 12 18:54:34 2009 +0000 @@ -452,7 +452,7 @@ local basename="${file##*/}" if [ "${CT_SAVE_TARBALLS}" = "y" ]; then - CT_DoLog EXTRA "Saving '${file##*/}' to local storage" + CT_DoLog EXTRA "Saving '${basename}' to local storage" # The file may already exist if downloads are forced: remove it first CT_DoExecLog ALL rm -f "${CT_LOCAL_TARBALLS_DIR}/${basename}" CT_DoExecLog ALL mv -f "${file}" "${CT_LOCAL_TARBALLS_DIR}" @@ -490,17 +490,18 @@ # Add URLs on the LAN mirror LAN_URLS= if [ "${CT_USE_MIRROR}" = "y" ]; then - CT_DoLog DEBUG "Trying to retrieve a copy of '${file}' from LAN mirror '${CT_MIRROR_HOSTNAME}'" CT_TestOrAbort "Please set the LAN mirror hostname" -n "${CT_MIRROR_HOSTNAME}" CT_TestOrAbort "Please tell me where to find tarballs on the LAN mirror '${CT_MIRROR_HOSTNAME}'" -n "${CT_MIRROR_BASE}" LAN_URLS="${LAN_URLS} ${CT_MIRROR_SCHEME}://${CT_MIRROR_HOSTNAME}/${CT_MIRROR_BASE}/${file%-*}" LAN_URLS="${LAN_URLS} ${CT_MIRROR_SCHEME}://${CT_MIRROR_HOSTNAME}/${CT_MIRROR_BASE}" - fi - if [ "${CT_PREFER_MIRROR}" = "y" ]; then - URLS="${LAN_URLS} ${@}" - else - URLS="${@} ${LAN_URLS}" + if [ "${CT_PREFER_MIRROR}" = "y" ]; then + CT_DoLog DEBUG "Pre-pending LAN mirror URLs" + URLS="${LAN_URLS} ${@}" + else + CT_DoLog DEBUG "Appending LAN mirror URLs" + URLS="${@} ${LAN_URLS}" + fi fi # Scan all URLs in turn, and try to grab a tarball from there @@ -765,6 +766,7 @@ local state_dir="${CT_STATE_DIR}/${state_name}" CT_DoLog DEBUG "Saving state to restart at step '${state_name}'..." + rm -rf "${state_dir}" mkdir -p "${state_dir}"