From: Tomáš Levora Date: Mon, 4 Feb 2019 14:48:51 +0000 (+0100) Subject: Create APT repository X-Git-Tag: 6.0.0-ONAP~325 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=cab02ed3eb0d8ea58f81944301cabea1577c21ea;p=oom%2Foffline-installer.git Create APT repository Adding creation of APT repository for resources Issue-ID: OOM-1619 Change-Id: I2d4f14dfcbf2508d31bbc105828853c01733bb3e Signed-off-by: Tomáš Levora --- diff --git a/build/creating_data/download-pkg.sh b/build/creating_data/create-rhel-repo.sh similarity index 73% rename from build/creating_data/download-pkg.sh rename to build/creating_data/create-rhel-repo.sh index 03bfe07f..8e872d9e 100755 --- a/build/creating_data/download-pkg.sh +++ b/build/creating_data/create-rhel-repo.sh @@ -16,16 +16,16 @@ # # COPYRIGHT NOTICE ENDS HERE -outdir="$1" -if [[ -z "$outdir" ]]; then +OUTDIR="${1}" +if [[ -z "${OUTDIR}" ]]; then echo "Missing output dir" exit 1 fi # if onap.repo does not exists create it -mkdir -p $outdir -if [ ! -f "$outdir/onap.repo" ]; then - cat > "$outdir/onap.repo" < "${OUTDIR}/onap.repo" < "${OUTDIR}/Packages" +cat "${OUTDIR}/Packages" | gzip -9c > "${OUTDIR}/Packages.gz" + +# create the Release file +echo 'deb [trusted=yes] http://repo.infra-server/ubuntu/xenial /' > "${OUTDIR}/onap.list" + +exit 0 diff --git a/build/download_offline_data_by_lists.sh b/build/download_offline_data_by_lists.sh index 00146ce5..5fb24802 100755 --- a/build/download_offline_data_by_lists.sh +++ b/build/download_offline_data_by_lists.sh @@ -46,7 +46,7 @@ fi CTOOLS="${LOCAL_PATH}/creating_data" LISTS_DIR="${LOCAL_PATH}/data_lists" DATA_DIR="${LOCAL_PATH}/../../resources" -TOTAL=10 +TOTAL=11 CURR=1 message info "Downloading started: $(date)" @@ -77,11 +77,14 @@ $CTOOLS/download-npm-pkgs.sh "$LISTS_DIR/${TAG}-npm.list" "$DATA_DIR/offline_dat echo "[Step $((CURR++))/$TOTAL Download bin tools]" $CTOOLS/download-bin-tools.sh "${TAG}" "$DATA_DIR/downloads" -echo "[Step $((CURR++))/$TOTAL Download rhel pkgs]" -$CTOOLS/download-pkg.sh "$DATA_DIR/pkg/rhel" +echo "[Step $((CURR++))/$TOTAL Create RHEL repository]" +$CTOOLS/create-rhel-repo.sh "$DATA_DIR/pkg/rhel" echo "[Step $((CURR++))/$TOTAL Download sdnc-ansible-server packages]" -$CTOOLS/download-pip.sh "$LISTS_DIR/${TAG}-pip_list.txt" "$DATA_DIR/offline_data/pypi" -$CTOOLS/download-files.sh "$LISTS_DIR/pkg_list.txt" "$DATA_DIR/pkg/ubuntu/xenial" +$CTOOLS/download-pip.sh "$LISTS_DIR/${TAG}-pip_packages.list" "$DATA_DIR/offline_data/pypi" +$CTOOLS/download-files.sh "$LISTS_DIR/deb_packages.list" "$DATA_DIR/pkg/ubuntu/xenial" + +echo "[Step $((CURR++))/$TOTAL Create APT repository]" +$CTOOLS/create-ubuntu-repo.sh "$DATA_DIR/pkg/ubuntu/xenial" message info "Downloading finished: $(date)"