diff options
author | Guilhem Moulin <guilhem@libreoffice.org> | 2020-02-16 19:47:20 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@libreoffice.org> | 2020-02-22 00:17:34 +0100 |
commit | 5256b396a984024a3815594847e4b4203faee836 (patch) | |
tree | 98eeba780482c020adb645482223f8110519c401 /ubuntu-jenkins | |
parent | 84a335d47a0b0e49f88447135d6d8ae60c198344 (diff) |
Upgrade links to HTTPS
Convert http:// URLs to https:// when there is a 301-redirect from the
former to the latter. There is no reason to leak data here :-)
* Our own (sub-)domains: .libreoffice.org, .documentfoundation.org
* .google.com
* License headers: mozilla.org, gnu.org, apache.org
This commit also upgrades git:// URLs (whether hosted at TDF or at
FreeDesktop) to https://git.libreoffice.org . And same thing for
GitHub-hosted repos.
Change-Id: Ia129eb1448a5263153c4b7cc1d03699052540ba2
Reviewed-on: https://gerrit.libreoffice.org/c/dev-tools/+/88818
Reviewed-by: Guilhem Moulin <guilhem@libreoffice.org>
Tested-by: Guilhem Moulin <guilhem@libreoffice.org>
Diffstat (limited to 'ubuntu-jenkins')
-rw-r--r-- | ubuntu-jenkins/jobs/libreoffice-master/config.xml | 2 | ||||
-rw-r--r-- | ubuntu-jenkins/jobs/repo-mirror-pre-one-git/config.xml | 2 | ||||
-rw-r--r-- | ubuntu-jenkins/jobs/repo-mirror/config.xml | 2 | ||||
-rwxr-xr-x | ubuntu-jenkins/setup-ubuntu-jenkins.sh | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/ubuntu-jenkins/jobs/libreoffice-master/config.xml b/ubuntu-jenkins/jobs/libreoffice-master/config.xml index c1fb3aa1..02be5c45 100644 --- a/ubuntu-jenkins/jobs/libreoffice-master/config.xml +++ b/ubuntu-jenkins/jobs/libreoffice-master/config.xml @@ -28,7 +28,7 @@ <buildChooser class="hudson.plugins.git.util.DefaultBuildChooser"/> <gitTool>Default</gitTool> <browser class="hudson.plugins.git.browser.GitWeb"> - <url>http://cgit.freedesktop.org/libreoffice/core/commit</url> + <url>https://git.libreoffice.org/core/commit</url> </browser> <submoduleCfg class="list"/> <relativeTargetDir></relativeTargetDir> diff --git a/ubuntu-jenkins/jobs/repo-mirror-pre-one-git/config.xml b/ubuntu-jenkins/jobs/repo-mirror-pre-one-git/config.xml index 5ccc2fbb..111bda9e 100644 --- a/ubuntu-jenkins/jobs/repo-mirror-pre-one-git/config.xml +++ b/ubuntu-jenkins/jobs/repo-mirror-pre-one-git/config.xml @@ -20,7 +20,7 @@ import os.path import subprocess workspace = os.environ['WORKSPACE'] -baseurl = 'git://anongit.freedesktop.org/libreoffice/' +baseurl = 'https://git.libreoffice.org/' repos = ['artwork', 'base', 'bootstrap', 'calc', 'components', 'extensions', 'extras', 'filters', 'help', 'impress', 'libs-core', 'libs-extern', 'libs-extern-sys', 'libs-gui', 'postprocess', 'sdk', 'testing', 'ure', 'writer'] state = [] diff --git a/ubuntu-jenkins/jobs/repo-mirror/config.xml b/ubuntu-jenkins/jobs/repo-mirror/config.xml index c3294211..c8d83763 100644 --- a/ubuntu-jenkins/jobs/repo-mirror/config.xml +++ b/ubuntu-jenkins/jobs/repo-mirror/config.xml @@ -24,7 +24,7 @@ import os.path import subprocess workspace = os.environ['WORKSPACE'] -baseurl = 'git://anongit.freedesktop.org/libreoffice/' +baseurl = 'https://git.libreoffice.org/' repos = [ 'core', 'binfilter', 'dictionaries', 'help', 'translations'] state = [] diff --git a/ubuntu-jenkins/setup-ubuntu-jenkins.sh b/ubuntu-jenkins/setup-ubuntu-jenkins.sh index d656a511..1c878887 100755 --- a/ubuntu-jenkins/setup-ubuntu-jenkins.sh +++ b/ubuntu-jenkins/setup-ubuntu-jenkins.sh @@ -20,7 +20,7 @@ cd plugins wget --no-check-certificate http://updates.jenkins-ci.org/latest/git.hpi cd .. wget --no-check-certificate https://github.com/downloads/KentBeck/junit/junit-4.9b2.jar -git clone git://anongit.freedesktop.org/libreoffice/contrib/dev-tools dev-tools +git clone https://git.libreoffice.org/dev-tools dev-tools mv dev-tools/ubuntu-jenkins/jobs jobs rm -rf dev-tools echo "#!/bin/sh" > start-lo-jenkins.sh |