-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add VMs to control package install/removal
- Loading branch information
1 parent
67532cd
commit 9bd631f
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |