~jocave/checkbox/hybrid-amd-gpu-mods

« back to all changes in this revision

Viewing changes to Vagrantfile

  • Committer: Tarmac
  • Author(s): Zygmunt Krynicki
  • Date: 2013-05-17 15:27:45 UTC
  • mfrom: (2128.1.4 launchpad/checkbox-ng)
  • Revision ID: tarmac-20130517152745-zlnq0q2n7jbubam7
"[r=zkrynicki][bug=][author=zkrynicki] automatic merge by tarmac"

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
  # Later on those could be installed on demand to test how we behave without
50
50
  # them but for now that's good enough. Little by little...
51
51
  config.vm.provision :shell, :inline => "apt-get install --yes fwts"
 
52
  # Develop checkbox so that we have it in $PATH
 
53
  config.vm.provision :shell, :inline => "cd /vagrant/ && python3 setup.py develop"
52
54
  # Develop plainbox so that we have it in $PATH
53
55
  config.vm.provision :shell, :inline => "cd /vagrant/plainbox/ && python3 setup.py develop"
 
56
  # Develop checkbox-ng so that we have it in $PATH
 
57
  config.vm.provision :shell, :inline => "cd /vagrant/checkbox-ng/ && python3 setup.py develop"
54
58
  # Create a cool symlink so that everyone knows where to go to
55
59
  config.vm.provision :shell, :inline => "ln --no-dereference --force --symbolic /vagrant /home/vagrant/checkbox"
56
60
end