From 70d8942de103396c1d4c09cf6904f5eb40a77a6f Mon Sep 17 00:00:00 2001
From: aviau <alexandre.viau@savoirfairelinux.com>
Date: Fri, 26 Jun 2015 09:12:11 -0400
Subject: [PATCH] Vagrant: sleep 10 before init

Change-Id: I29d72823d7b0bfe51da2246ca29b0c56417fe762
---
 contrib/Vagrantfile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/contrib/Vagrantfile b/contrib/Vagrantfile
index 4bb73f9..1b47df6 100644
--- a/contrib/Vagrantfile
+++ b/contrib/Vagrantfile
@@ -19,6 +19,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
   config.vm.provision :shell, :inline => "yum install -y surveil-full --nogpgcheck"
   config.vm.provision :shell, :inline => "systemctl start mongod"
   config.vm.provision :shell, :inline => "systemctl start surveil-full.target"
+  config.vm.provision :shell, :inline => "sleep 10"
   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'"