From 6939bd77416a71b4d5d8b3522c946b19fac7664f Mon Sep 17 00:00:00 2001 From: Arkadiusz Hiler Date: Tue, 2 Nov 2021 15:39:25 +0200 Subject: [PATCH] Vagrantfile: Add mitigation for GitHub's git protocol deprecation. The planned brownouts already cause problems. Link: https://github.blog/2021-09-01-improving-git-protocol-security-github/ --- Vagrantfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index d195256d..6f871546 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -79,6 +79,9 @@ Vagrant.configure(2) do |config| apt-get install -y ccache texinfo gpgv2 gnupg2 git docker-ce docker-ce-cli containerd.io \ fontforge-nox python-debian uuid-dev python3-pip + # https://github.blog/2021-09-01-improving-git-protocol-security-github/ + git config --global url.https://github.com/.insteadOf git://github.com/ + #install adobe font devkit to build source san hans pip3 install afdko