aboutsummaryrefslogtreecommitdiffstats
path: root/src/fuel-plugin/vagrant
diff options
context:
space:
mode:
authorGuo Ruijing <ruijing.guo@intel.com>2016-11-22 12:47:17 -0500
committerGuo Ruijing <ruijing.guo@intel.com>2016-11-22 12:50:03 -0500
commit6e733e1cbc42df0b839baead51629fdcb6fb2c7c (patch)
tree55ad10812215c34b4cf4f0cf648bdfccc7dc6ba8 /src/fuel-plugin/vagrant
parent5541131a92d2616e08daa9ea3374ff808d20ad4e (diff)
Enable collectd in ubuntu 16.04
Change-Id: I67d8d36dab9cdd51276dc2c3e8b514b426005cad Signed-off-by: Guo Ruijing <ruijing.guo@intel.com>
Diffstat (limited to 'src/fuel-plugin/vagrant')
-rw-r--r--src/fuel-plugin/vagrant/Vagrantfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fuel-plugin/vagrant/Vagrantfile b/src/fuel-plugin/vagrant/Vagrantfile
index 06bbc958..8e2d9db1 100644
--- a/src/fuel-plugin/vagrant/Vagrantfile
+++ b/src/fuel-plugin/vagrant/Vagrantfile
@@ -6,8 +6,7 @@ VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
- config.vm.box = "trusty-server-cloudimg-amd64"
- config.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box"
+ config.vm.box = "bento/ubuntu-16.04"
config.vm.define "fuel" do | h |
h.vm.host_name = "fuel"
@@ -16,6 +15,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
h.vm.provider :virtualbox do |v|
v.customize ["modifyvm", :id, "--memory", 4096]
v.customize ["modifyvm", :id, "--cpus", 4]
+ v.customize "post-boot",["controlvm", :id, "setlinkstate1", "on"]
end
end
end