From f2e1e7a6e4d552ce9a0d413cc619eab84a54ebce Mon Sep 17 00:00:00 2001
From: Alessandro Cerioni <acerioni@grandlyon.com>
Date: Tue, 11 Dec 2018 14:57:39 +0100
Subject: [PATCH] Bugfix.

Running Apache in the foreground was preventing the next lines of the start.sh script from being actually executed: the Nominatim updates were not operational!
---
 nominatim-3.1/start.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nominatim-3.1/start.sh b/nominatim-3.1/start.sh
index 5a11e92..a04c194 100755
--- a/nominatim-3.1/start.sh
+++ b/nominatim-3.1/start.sh
@@ -1,6 +1,6 @@
 #!/bin/bash
 service postgresql start
-/usr/sbin/apache2ctl -D FOREGROUND
+/usr/sbin/apache2ctl start
 
 ## Set up nominatim updates ###
 
-- 
GitLab