Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: Vagrantfile

Issue 6029451183783936: Add Filtermaster (Closed)
Patch Set: All Done Created Nov. 14, 2013, 3:26 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | manifests/filtermasterserver.pp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 def define_standard_vm(config, host_name, ip) 1 def define_standard_vm(config, host_name, ip)
2 config.vm.define host_name do |config| 2 config.vm.define host_name do |config|
3 config.vm.box = 'precise64' 3 config.vm.box = 'precise64'
4 config.vm.box_url = 'http://files.vagrantup.com/precise64.box' 4 config.vm.box_url = 'http://files.vagrantup.com/precise64.box'
5 config.vm.host_name = "#{host_name}.adblockplus.org" 5 config.vm.host_name = "#{host_name}.adblockplus.org"
6 config.vm.network :hostonly, ip, { nic_type: '82543GC' } 6 config.vm.network :hostonly, ip, { nic_type: '82543GC' }
7 config.vm.customize ["modifyvm", :id, "--cpus", 1] 7 config.vm.customize ["modifyvm", :id, "--cpus", 1]
8 8
9 config.vm.provision :shell, :inline => ' 9 config.vm.provision :shell, :inline => '
10 if ! test -f /usr/bin/puppet; then 10 if ! test -f /usr/bin/puppet; then
(...skipping 30 matching lines...) Expand all
41 define_standard_vm config, 'server22', '10.8.0.117' 41 define_standard_vm config, 'server22', '10.8.0.117'
42 define_standard_vm config, 'notification1', '10.8.0.118' 42 define_standard_vm config, 'notification1', '10.8.0.118'
43 define_standard_vm config, 'notification2', '10.8.0.119' 43 define_standard_vm config, 'notification2', '10.8.0.119'
44 define_standard_vm config, 'filter1', '10.8.0.120' 44 define_standard_vm config, 'filter1', '10.8.0.120'
45 define_standard_vm config, 'filter2', '10.8.0.121' 45 define_standard_vm config, 'filter2', '10.8.0.121'
46 define_standard_vm config, 'filter3', '10.8.0.122' 46 define_standard_vm config, 'filter3', '10.8.0.122'
47 define_standard_vm config, 'filter4', '10.8.0.123' 47 define_standard_vm config, 'filter4', '10.8.0.123'
48 define_standard_vm config, 'filter5', '10.8.0.124' 48 define_standard_vm config, 'filter5', '10.8.0.124'
49 define_standard_vm config, 'filter6', '10.8.0.125' 49 define_standard_vm config, 'filter6', '10.8.0.125'
50 define_standard_vm config, 'download1', '10.8.0.126' 50 define_standard_vm config, 'download1', '10.8.0.126'
51 define_standard_vm config, 'filtermaster1', '10.8.0.127'
51 end 52 end
OLDNEW
« no previous file with comments | « no previous file | manifests/filtermasterserver.pp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld