From a8c1989896508ef1339328573c3f78a6086fa738 Mon Sep 17 00:00:00 2001 From: flavien peyre Date: Mon, 22 Jun 2015 11:16:11 -0400 Subject: [PATCH] Show the ip of a vm created by Vagrantfile Change-Id: I597896d5080d1da7ce117139b0dba6ab32b0a3f2 --- contrib/Vagrantfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/contrib/Vagrantfile b/contrib/Vagrantfile index 2f95744..e23f065 100644 --- a/contrib/Vagrantfile +++ b/contrib/Vagrantfile @@ -21,4 +21,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.provision :shell, :inline => "surveil-init --influxdb" config.vm.provision :shell, :inline => "surveil-webui-init -H localhost -U root -P root -p 8086 -g 'http://localhost:3000/grafana'" + # Show IP + config.vm.provision :shell, :inline => "ip addr | grep 'inet 192.168.'" + end