Switch everything from git:// to https://

Github removed support for the unencrypted Git protocol, see
https://github.blog/2021-09-01-improving-git-protocol-security-github/
master
Michael Prokop 3 years ago
parent 7105d5958e
commit 05f82bbf52

@ -20,7 +20,7 @@ sudo dpkg -i ruby-crack_*.deb ruby-httparty_*.deb ruby-jenkins_*.deb ruby-tho
Recipe provided by Michael Gebetsroither: Recipe provided by Michael Gebetsroither:
#+BEGIN_EXAMPLE #+BEGIN_EXAMPLE
git clone git://github.com/gebi/rubyrrdtool.git git clone https://github.com/gebi/rubyrrdtool.git
cd rubyrrdtool cd rubyrrdtool
ruby extconf.rb ruby extconf.rb
make make

@ -5,7 +5,7 @@
- project: - project:
name: jdg-freight name: jdg-freight
repos: git://github.com/mika/jenkins-debian-glue.git repos: https://github.com/mika/jenkins-debian-glue.git
jobs: jobs:
- '{name}-source' - '{name}-source'
- '{name}-binaries' - '{name}-binaries'

@ -5,7 +5,7 @@
- project: - project:
name: jenkins-debian-glue name: jenkins-debian-glue
repos: git://github.com/mika/jenkins-debian-glue.git repos: https://github.com/mika/jenkins-debian-glue.git
jobs: jobs:
- '{name}-source' - '{name}-source'
- '{name}-binaries' - '{name}-binaries'

@ -376,7 +376,7 @@ class jenkins::config {
<hudson.plugins.git.UserRemoteConfig> <hudson.plugins.git.UserRemoteConfig>
<name></name> <name></name>
<refspec></refspec> <refspec></refspec>
<url>git://github.com/mika/jenkins-debian-glue.git</url> <url>https://github.com/mika/jenkins-debian-glue.git</url>
</hudson.plugins.git.UserRemoteConfig> </hudson.plugins.git.UserRemoteConfig>
</userRemoteConfigs> </userRemoteConfigs>
<branches> <branches>

@ -10,7 +10,7 @@
# Ideas: # Ideas:
# * integrate within Jenkins plugin (using jruby) # * integrate within Jenkins plugin (using jruby)
# * integrate in Violations plugin (for further reporting options) # * integrate in Violations plugin (for further reporting options)
# git://github.com/jenkinsci/violations-plugin.git # https://github.com/jenkinsci/violations-plugin.git
################################################################################ ################################################################################
require 'shellwords' require 'shellwords'

Loading…
Cancel
Save