From 15db0f87403afa45270b4a2d3ed717a9aab816e4 Mon Sep 17 00:00:00 2001 From: Anthony Bishopric Date: Sat, 8 Jun 2013 23:39:38 -0700 Subject: [PATCH] Fixing hack/Vagrantfile to use uname for aufs linux extras Conflicts: hack/Vagrantfile Resolved by: Daniel Mizyrycki Upstream-commit: e3dbe2f2ba56c2dc482f8fbdd0db0556bbc253c9 Component: engine --- components/engine/hack/Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/hack/Vagrantfile b/components/engine/hack/Vagrantfile index e02dfe06db..e6df8e3300 100644 --- a/components/engine/hack/Vagrantfile +++ b/components/engine/hack/Vagrantfile @@ -22,7 +22,7 @@ Vagrant::Config.run do |config| pkg_cmd = "touch #{DOCKER_PATH}; " # Install docker dependencies pkg_cmd << "export DEBIAN_FRONTEND=noninteractive; apt-get -qq update; " \ - "apt-get install -q -y lxc git aufs-tools golang make linux-image-extra-3.8.0-19-generic; " \ + "apt-get install -q -y lxc git aufs-tools golang make linux-image-extra-`uname -r`; " \ "chown -R #{USER}.#{USER} #{GOPATH}; " \ "install -m 0664 #{CFG_PATH}/bash_profile /home/#{USER}/.bash_profile" config.vm.provision :shell, :inline => pkg_cmd