Merge "Remote subcloud install failure in post-install script"

This commit is contained in:
Zuul 2022-06-02 19:26:00 +00:00 committed by Gerrit Code Review
commit 5e2f99943b
2 changed files with 2 additions and 2 deletions

View File

@ -534,7 +534,7 @@ else
# so get it from the system controller.
wlog "${KS} downloading packages_list from the system controller"
wget ${NOVERIFYSSL_WGET_OPT} ${pkg_url}/${DEST_PKG_FILE} \
-O ${PKG_FILE_LOC} \
-O ${PKG_FILE_LOC}/${DEST_PKG_FILE} \
-o $anaconda_logdir/${PKG_FILE}.log \
|| report_post_failure_with_logfile $anaconda_logdir/${PKG_FILE}.log
fi

View File

@ -106,7 +106,7 @@ if [ mountpoint -q /mnt/sysimage ]; then
fi
wlog "${KS} Downloading from ${feed_url} to ${pkg_file_loc}/${pkg_file}"
wget ${NOVERIFYSSL_WGET_OPT} -O ${pkg_file_loc} ${feed_url}/${pkg_file} \
wget ${NOVERIFYSSL_WGET_OPT} -O ${pkg_file_loc}/${pkg_file} ${feed_url}/${pkg_file} \
-o $anaconda_logdir/${pkg_file}.log \
|| wlog "${KS} Failed to download packages_list from controller"