From 882b8aee01a79c8505d6028e881e7101c319c704 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sat, 18 Jun 2022 12:05:50 +0200 Subject: [PATCH] update git URLs (git -> https; gitea/gerrit) Change-Id: I5f51b260445624759e77a70c5065838b29ec8c01 --- contrib/jenkins-build-common.sh | 2 +- doc/manuals/chapters/install.adoc | 6 +++--- sysmocom/ttcn3/jenkins-run.sh | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/contrib/jenkins-build-common.sh b/contrib/jenkins-build-common.sh index 1579c343..4a17d4d1 100644 --- a/contrib/jenkins-build-common.sh +++ b/contrib/jenkins-build-common.sh @@ -42,7 +42,7 @@ if [ -z "$name" -o -z "$base" ]; then exit 1 fi -git_url="${git_url:-git://git.osmocom.org}" +git_url="${git_url:-https://git.osmocom.org}" prefix="${prefix:-$base/inst-$name}" # prefix_real is usually identical with prefix, except when installing to a # different $DESTDIR than /, which is the case for example when building diff --git a/doc/manuals/chapters/install.adoc b/doc/manuals/chapters/install.adoc index fb364aa9..bd47e2cf 100644 --- a/doc/manuals/chapters/install.adoc +++ b/doc/manuals/chapters/install.adoc @@ -55,7 +55,7 @@ jenkins-build-osmo-nitb.sh script; all that differs to the other scripts is the system, e.g.: "linux_amd64_debian8" * 'Source Code Management': ** 'Git' -*** 'Repository URL': "git://git.osmocom.org/osmo-gsm-tester" +*** 'Repository URL': "https://gitea.osmocom.org/cellular-infrastructure/osmo-gsm-tester" *** 'Branch Specifier': "*/master" *** 'Additional Behaviors' **** 'Check out to a sub-directory': "osmo-gsm-tester" @@ -262,7 +262,7 @@ Here is the configuration for the run job: (to match the 'Label' configured in <>). * 'Source Code Management': ** 'Git' -*** 'Repository URL': "git://git.osmocom.org/osmo-gsm-tester" +*** 'Repository URL': "https://gitea.osmocom.org/cellular-infrastructure/osmo-gsm-tester" *** 'Branch Specifier': "*/master" *** 'Additional Behaviors' **** 'Check out to a sub-directory': "osmo-gsm-tester" @@ -669,7 +669,7 @@ On the main unit, to install the latest in '/usr/local/src': apt-get install git mkdir -p /usr/local/src cd /usr/local/src -git clone git://git.osmocom.org/osmo-gsm-tester +git clone https://gitea.osmocom.org/cellular-infrastructure/osmo-gsm-tester ---- To allow all users to run 'osmo-gsm-tester.py', from login as well as non-login diff --git a/sysmocom/ttcn3/jenkins-run.sh b/sysmocom/ttcn3/jenkins-run.sh index faa9aadc..822b5eae 100755 --- a/sysmocom/ttcn3/jenkins-run.sh +++ b/sysmocom/ttcn3/jenkins-run.sh @@ -13,7 +13,7 @@ prepare_docker() { DIR=~/jenkins/docker-playground if [ ! -d "$DIR" ]; then mkdir -p ~/jenkins/ && cd ~/jenkins - git clone git://git.osmocom.org/docker-playground + git clone https://gerrit.osmocom.org/docker-playground fi cd $DIR git remote prune origin; git fetch; git checkout -f -B master origin/master