Need to do update before installing linux-image-extra kernel in case system is outdated.

This commit is contained in:
arthurvanduynhoven 2015-06-24 14:56:28 +02:00
parent 28a42122b8
commit 94549ab755
1 changed files with 1 additions and 1 deletions

View File

@ -8,11 +8,11 @@ module VagrantPlugins
package << "-#{version}" if version != :latest
machine.communicate.tap do |comm|
comm.sudo("apt-get update -y")
# 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")