I started having this problem when running the docker provisioner (Vagrant 1.7.2): Err http://get.docker.io docker/main amd64 Packages Undetermined Error Err http://get.docker.io docker/main i386 Packages Undetermined Error Ign http://get.docker.io docker/main Translation-en_US Ign http://get.docker.io docker/main Translation-en Stderr from the command: stdin: is not a tty W: Failed to fetch http://get.docker.io/ubuntu/dists/docker/main/binary-amd64/Packages Undetermined Error W: Failed to fetch http://get.docker.io/ubuntu/dists/docker/main/binary-i386/Packages Undetermined Error Changing this to https seemed to fix the problem for now.
29 lines
1.2 KiB
Ruby
29 lines
1.2 KiB
Ruby
module VagrantPlugins
|
|
module DockerProvisioner
|
|
module Cap
|
|
module Debian
|
|
module DockerInstall
|
|
def self.docker_install(machine, version)
|
|
package = 'lxc-docker'
|
|
package << "-#{version}" if version != :latest
|
|
|
|
machine.communicate.tap do |comm|
|
|
# TODO: Perform check on the host machine if aufs is installed and using LXC
|
|
if machine.provider_name != :lxc
|
|
comm.sudo("lsmod | grep aufs || modprobe aufs || apt-get install -y linux-image-extra-`uname -r`")
|
|
end
|
|
comm.sudo("apt-get update -y")
|
|
comm.sudo("apt-get install -y --force-yes -q curl")
|
|
comm.sudo("curl -sSL https://get.docker.com/gpg | apt-key add -")
|
|
comm.sudo("echo deb https://get.docker.com/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")
|
|
comm.sudo("apt-get install -y --force-yes -q xz-utils #{package} -o Dpkg::Options::='--force-confdef' -o Dpkg::Options::='--force-confold'")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|