From 1eb50dc1434bc11662b683e3eb31b62212fbb6af Mon Sep 17 00:00:00 2001 From: Aloysius Lim Date: Wed, 17 Jun 2015 15:26:26 +0800 Subject: [PATCH] Fix provisioning of Ubuntu test instances. --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 9fdbff4..845e9e1 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -38,7 +38,7 @@ Vagrant.configure(2) do |config| # mismatch if machine[0].start_with? "ubuntu" m.vm.provision "shell", inline: <<-SHELL - sudo sed -i 's#http://.*ubuntu\.com/ubuntu/?#mirror://mirrors.ubuntu.com/mirrors.txt#' \ + sudo sed -i 's#http://.*ubuntu\.com/ubuntu/#mirror://mirrors.ubuntu.com/mirrors.txt#' \ /etc/apt/sources.list SHELL end