-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathVagrantfile
29 lines (25 loc) · 1.03 KB
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.define :sl6_user do |c|
c.vm.box = "sl6"
c.vm.box_url = 'http://files.rutan.info/box/scientific-6-5-x64-virtualbox.box'
c.vm.network :private_network, ip: '192.168.33.11'
end
config.vm.define :sl6_system do |c|
c.vm.box = "sl6"
c.vm.box_url = 'http://files.rutan.info/box/scientific-6-5-x64-virtualbox.box'
c.vm.network :private_network, ip: '192.168.33.12'
end
config.vm.define :ubuntu1404_user do |c|
c.vm.box = "ubuntu1404"
c.vm.box_url = 'https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box'
c.vm.network :private_network, ip: '192.168.33.21'
end
config.vm.define :ubuntu1404_system do |c|
c.vm.box = "ubuntu1404"
c.vm.box_url = 'https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box'
c.vm.network :private_network, ip: '192.168.33.22'
end
end