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

Unified Diff: Vagrantfile

Issue 11468051: Update stats processing (Closed)
Patch Set: Created Aug. 23, 2013, 1:58 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | modules/downloadserver/manifests/init.pp » ('j') | modules/statsclient/manifests/init.pp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Vagrantfile
===================================================================
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -1,14 +1,14 @@
def define_standard_vm(config, host_name, ip)
config.vm.define host_name do |config|
config.vm.box = 'precise64'
config.vm.box_url = 'http://files.vagrantup.com/precise64.box'
config.vm.host_name = "#{host_name}.adblockplus.org"
- config.vm.network :hostonly, ip, { nic_type: 'Am79C970A' }
+ config.vm.network :hostonly, ip, { nic_type: '82543GC' }
Wladimir Palant 2013/08/23 14:01:38 Not sure why but the other network interface doesn
config.vm.customize ["modifyvm", :id, "--cpus", 1]
config.vm.provision :shell, :inline => '
if ! test -f /usr/bin/puppet; then
sudo apt-get update && sudo apt-get install -y puppet
fi'
manifest_files = ['vagrant.pp', 'nodes.pp']
« no previous file with comments | « no previous file | modules/downloadserver/manifests/init.pp » ('j') | modules/statsclient/manifests/init.pp » ('J')

Powered by Google App Engine
This is Rietveld