From fdec88ed10910485efc53e1e85b678a2f1a1180e Mon Sep 17 00:00:00 2001 From: Jan Benedikt Date: Thu, 19 Mar 2020 16:03:25 +0100 Subject: Adding support for another packages lists Adding support for another packages lists in create_repo script. Additional package lists is for packages which are for example helpful tools for debugging. Issue-ID: OOM-2340 Signed-off-by: Jan Benedikt Change-Id: If0bcb437809b60d83ed92436adade086314ccfac --- build/create_repo.sh | 54 ++++++++++++++++++++++------- build/docker-entrypoint.sh | 84 ++++++++++++++++++++++++++++++++++++---------- 2 files changed, 109 insertions(+), 29 deletions(-) (limited to 'build') diff --git a/build/create_repo.sh b/build/create_repo.sh index 4403a4e3..fa53e688 100755 --- a/build/create_repo.sh +++ b/build/create_repo.sh @@ -15,16 +15,28 @@ container_offline_volume="/mnt/offline/" # Path inside container where will be created repository container_repo_volume="/mnt/repo/" +# Path inside container where will be stored additional packages lists +container_list_volume="/mnt/additional-lists/" + # Show help for using this script help () { - echo "Script for run docker container creating DEB or RPM repository" - echo "Type of repository is created based on user input or if input is empty type of host OS" - echo "usage: create_repo.sh [-d|--destination-repository output directory] [-c|--cloned-directory input directory] [-t|--target-platform (ubuntu/rhel/centos) target platform for repository]" - echo "-h --help: Show this help" - echo "-d --destination-repository: set path where will be stored RPM packages. Default value is current directory" - echo "-c --cloned-directory: set path where is stored this script and docker-entrypoint script (offline-installer/build directory). Fill it just when you want to use different script/datalists" - echo "-t --target-platform: set target platform for repository" - echo "If build folder from offline repository is not specified will be used default path of current folder." +cat </resources/pkg/rhel/" - echo "RMP/DEB list is stored at: ./data_list/" +cat </resources/pkg/rhel/ +RMP/DEB list is stored at: ./data_list/ +EOF } # Getting input parametters @@ -57,6 +68,15 @@ do # Sets path where is stored onap_rpm.list or onap_deb.list file PCKG_LIST_DIR="$2" ;; + -p|--packages-lists-path) + # Path parametter + # Sets path where is stored additional packages lists + ADD_LIST_DIR="$2" + ;; + -a|--additional-list) + # Array of additional packages lists + ADDITIONAL_LISTS+=("$2") + ;; *) # unknown option help # show help @@ -83,6 +103,13 @@ then PCKG_LIST_DIR="/tmp/offline/data_list/" fi +# Testing if additional packages list parametter was used +# If not variable is sets to default value /tmp/additional-lists +if test -z "$PCKG_LIST_DIR" +then + PCKG_LIST_DIR="/tmp/additional-lists/" +fi + case "$distro_type" in ubuntu) # Change current working dir @@ -108,20 +135,35 @@ case "$distro_type" in # Download all packages from onap_deb.list via apt-get to repository folder for i in $(cat ${PCKG_LIST_DIR}onap_deb.list | awk '{print $1}');do apt-get download $i -y; done for i in $(cat ${PCKG_LIST_DIR}onap_deb.list | awk '{print $1}'); - do - for depends in $(apt-cache depends $i | grep -E 'Depends' | cut -d ':' -f 2,3 | sed -e s/'<'/''/ -e s/'>'/''/); - do apt-get download $depends -y; - done; - done + do + for depends in $(apt-cache depends $i | grep -E 'Depends' | cut -d ':' -f 2,3 | sed -e s/'<'/''/ -e s/'>'/''/); + do apt-get download $depends -y; + done; + done + + # Download all packages with dependecies from all additional packages lists via apt-get to repository folder + if ! [ ${#ADDITIONAL_LISTS[@]} -eq 0 ]; then + for list in ${ADDITIONAL_LISTS[@]} + do + for i in $(cat ${ADD_LIST_DIR}$list | awk '{print $1}');do apt-get download $i -y; done + for i in $(cat ${ADD_LIST_DIR}$list | awk '{print $1}'); + do + for depends in $(apt-cache depends $i | grep -E 'Depends' | cut -d ':' -f 2,3 | sed -e s/'<'/''/ -e s/'>'/''/); + do apt-get download $depends -y; + done; + done + done + fi # In repository folder create gz package with deb packages dpkg-scanpackages . /dev/null | gzip -9c > Packages.gz ;; rhel) - # Install createrepo package for create repository in folder - # and yum-utils due to yum-config-manager for adding docker repository - yum install createrepo yum-utils -y + # Install createrepo package for create repository in folder, + # yum-utils due to yum-config-manager for adding docker repository + # and epel-release for additional packages (like jq etc.) + yum install createrepo yum-utils epel-release -y # Add official docker repository yum-config-manager --add-repo=https://download.docker.com/linux/centos/7/x86_64/stable/ @@ -129,6 +171,14 @@ case "$distro_type" in # Download all packages from onap_rpm.list via yumdownloader to repository folder for i in $(cat ${PCKG_LIST_DIR}onap_rpm.list | awk '{print $1}');do yumdownloader --resolve --downloadonly --destdir=${OFFLINE_REPO_DIR} $i -y; done + # Download all packages from all additional packages lists via apt-get to repository folder + if ! [ ${#ADDITIONAL_LISTS[@]} -eq 0 ]; then + for list in ${ADDITIONAL_LISTS[@]} + do + for i in $(cat ${ADD_LIST_DIR}$list | awk '{print $1}');do yumdownloader --resolve --downloadonly --destdir=${OFFLINE_REPO_DIR} $i -y; done + done + fi + # In repository folder create repositor createrepo $OFFLINE_REPO_DIR ;; -- cgit 1.2.3-korg