Browse code

install aufs-tools when setting up the hack vagrant box

unclejack authored on 2013/06/14 21:09:07
Showing 1 changed files
... ...
@@ -22,7 +22,7 @@ Vagrant::Config.run do |config|
22 22
   pkg_cmd = "touch #{DOCKER_PATH}; "
23 23
   # Install docker dependencies
24 24
   pkg_cmd << "export DEBIAN_FRONTEND=noninteractive; apt-get -qq update; " \
25
-    "apt-get install -q -y lxc bsdtar git golang make linux-image-extra-3.8.0-19-generic; " \
25
+    "apt-get install -q -y lxc bsdtar git aufs-tools golang make linux-image-extra-3.8.0-19-generic; " \
26 26
     "chown -R #{USER}.#{USER} #{GOPATH}; " \
27 27
     "install -m 0664 #{CFG_PATH}/bash_profile /home/#{USER}/.bash_profile"
28 28
   config.vm.provision :shell, :inline => pkg_cmd