Merge pull request #4596 from miguel250/patch-1

Use HTTPS to download docker's gpg key.
This commit is contained in:
Mitchell Hashimoto 2014-10-23 09:32:54 -07:00
commit 29df3c733b
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ module VagrantPlugins
end
comm.sudo("apt-get update -y")
comm.sudo("apt-get install -y --force-yes -q curl")
comm.sudo("curl http://get.docker.io/gpg | apt-key add -")
comm.sudo("curl https://get.docker.io/gpg | apt-key add -")
comm.sudo("echo deb http://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list")
comm.sudo("apt-get update")
comm.sudo("echo lxc lxc/directory string /var/lib/lxc | debconf-set-selections")