]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/nominatim/templates/default/update_source.erb
remove autoconf-based nominatim roles and recipes
[chef.git] / cookbooks / nominatim / templates / default / update_source.erb
diff --git a/cookbooks/nominatim/templates/default/update_source.erb b/cookbooks/nominatim/templates/default/update_source.erb
deleted file mode 100644 (file)
index ec8f017..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-
-# DO NOT EDIT - This file is being maintained by Chef
-
-cd <%= @source_directory %>
-
-git submodule update &&
-./autogen.sh &&
-./configure &&
-make
-
-psql -d <%= node[:nominatim][:database][:dbname] %> -c "SELECT version();" >/dev/null 2>&1
-if [[ "$?" == "0" ]]; then
-  ./utils/setup.php --create-functions --create-partition-functions --enable-diff-updates
-fi