From 31a49a7c95926c3fe7036e5b43459a54c4c08028 Mon Sep 17 00:00:00 2001
From: Alexander Klimov <alexander.klimov@netways.de>
Date: Tue, 25 Nov 2014 15:24:32 +0100
Subject: [PATCH] Don't start ido2db-*sql

---
 .vagrant-puppet/manifests/finalize.sh | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/.vagrant-puppet/manifests/finalize.sh b/.vagrant-puppet/manifests/finalize.sh
index 615953d8c..069bb7734 100644
--- a/.vagrant-puppet/manifests/finalize.sh
+++ b/.vagrant-puppet/manifests/finalize.sh
@@ -2,12 +2,6 @@
 
 set -e
 
-startServicesWithNonLSBCompliantExitStatusCodes () {
-    # Unfortunately the ido2db init script is not LSB compliant and hence not started via puppet
-    service ido2db-mysql start || true
-    service ido2db-pgsql start || true
-}
-
 mountIcinga2webVarLog () {
     if ! $(/bin/mount | /bin/grep -q "/vagrant/var/log"); then
         # Remount /vagrant/var/log/ with appropriate permissions since the group apache is missing initially
@@ -18,7 +12,6 @@ mountIcinga2webVarLog () {
     fi
 }
 
-startServicesWithNonLSBCompliantExitStatusCodes
 mountIcinga2webVarLog
 
 exit 0