From e04c2550beb37c8cb5806bb36710d04de8c312b6 Mon Sep 17 00:00:00 2001 From: Johnathon Date: Mon, 26 Apr 2021 00:40:48 -0600 Subject: [PATCH] Switch back to http The servers are local and http shouldn't be an issue. I am just to lazy to deal with figuring out the cert errors from pulp --- concourse/create_iso.sh | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/concourse/create_iso.sh b/concourse/create_iso.sh index 198ff9b..920e85c 100755 --- a/concourse/create_iso.sh +++ b/concourse/create_iso.sh @@ -55,11 +55,11 @@ echo "-g $GPG_KEY_NAME" echo "-p HIDDEN PASSWORD" echo "-i $GPG_KEY_PATH" echo "-t $ENABLE_TESTING" -echo "-b https://${PULP_HOST}/pulp/repos/centos/7/os/x86_64/" -echo "-e https://${PULP_HOST}/pulp/repos/centos/7/extras/x86_64/" -echo "-u https://${PULP_HOST}/pulp/repos/centos/7/updates/x86_64/" -echo "-E https://${PULP_HOST}/pulp/repos/pub/epel/7/x86_64/" -echo "-l https://${PULP_HOST}/pulp/repos/packages/7.x/yum/" +echo "-b http://${PULP_HOST}/pulp/repos/centos/7/os/x86_64/" +echo "-e http://${PULP_HOST}/pulp/repos/centos/7/extras/x86_64/" +echo "-u http://${PULP_HOST}/pulp/repos/centos/7/updates/x86_64/" +echo "-E http://${PULP_HOST}/pulp/repos/pub/epel/7/x86_64/" +echo "-l http://${PULP_HOST}/pulp/repos/packages/7.x/yum/" set +x ../master-iso.sh \ @@ -69,10 +69,10 @@ set +x -p "$GPG_KEY_PASS" \ -i "$GPG_KEY_PATH" \ -t "$ENABLE_TESTING" \ --b "https://${PULP_HOST}/pulp/repos/centos/7/os/x86_64/" \ --e "https://${PULP_HOST}/pulp/repos/centos/7/extras/x86_64/" \ --u "https://${PULP_HOST}/pulp/repos/centos/7/updates/x86_64/" \ --E "https://${PULP_HOST}/pulp/repos/pub/epel/7/x86_64/" \ --l "https://${PULP_HOST}pulp/repos/packages/7.x/yum/" \ +-b "http://${PULP_HOST}/pulp/repos/centos/7/os/x86_64/" \ +-e "http://${PULP_HOST}/pulp/repos/centos/7/extras/x86_64/" \ +-u "http://${PULP_HOST}/pulp/repos/centos/7/updates/x86_64/" \ +-E "http://${PULP_HOST}/pulp/repos/pub/epel/7/x86_64/" \ +-l "http://${PULP_HOST}pulp/repos/packages/7.x/yum/" \ -a 'https://packagecloud.io/rocknsm/2_6/el/7/$basearch' \