From 52fe45249798991a35f5a5b5a4e1af26ea42221c Mon Sep 17 00:00:00 2001 From: Markus Fix <lispmeister@gmail.com> Date: Tue, 3 Sep 2013 17:19:05 +0200 Subject: [PATCH] Changed docker apt repo URI from https to http because the http driver for apt is not installed by default --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 53620eabc6..4767a8b1cc 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -18,7 +18,7 @@ Vagrant::Config.run do |config| if Dir.glob("#{File.dirname(__FILE__)}/.vagrant/machines/default/*/id").empty? # Add lxc-docker package pkg_cmd = "wget -q -O - http://get.docker.io/gpg | apt-key add -;" \ - "echo deb https://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list;" \ + "echo deb http://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list;" \ "apt-get update -qq; apt-get install -q -y --force-yes lxc-docker; " # Add Ubuntu raring backported kernel pkg_cmd << "apt-get update -qq; apt-get install -q -y linux-image-generic-lts-raring; "