Skip to content

Commit

Permalink
Add VMs to control package install/removal
Browse files Browse the repository at this point in the history
  • Loading branch information
jefmathiot committed Nov 3, 2014
1 parent 67532cd commit 9bd631f
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions build/control/Vagrantfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :

# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
%w(ubuntu/trusty32 ubuntu/trusty64).each do |img|
config.vm.define img.gsub(/\//, '-') do |machine|
machine
machine.vm.box=img
machine.vm.synced_folder File.expand_path(
File.join(File.dirname(__FILE__), "../pkg")
), "/tmp/pkg"
end
end
end

0 comments on commit 9bd631f

Please sign in to comment.