X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/5dea0658e4ec78051e1bf269690352e00f3d8759..1020a888346295466acc6cd3c366760f434d3f6c:/vagrant/install-on-ubuntu-16.sh diff --git a/vagrant/install-on-ubuntu-16.sh b/vagrant/install-on-ubuntu-16.sh index 81a8a926..c347923f 100755 --- a/vagrant/install-on-ubuntu-16.sh +++ b/vagrant/install-on-ubuntu-16.sh @@ -131,13 +131,20 @@ sudo sed -i 's:#.*::' /etc/apache2/conf-available/nominatim.conf #DOCS: if [ "x$1" == "xyes" ]; then #DOCS: cd $USERHOME - git clone --recursive git://github.com/twain47/Nominatim.git + git clone --recursive git://github.com/openstreetmap/Nominatim.git #DOCS: cd Nominatim else #DOCS: cd $USERHOME #DOCS: fi #DOCS: +# When installing the latest source from github, you also need to +# download the country grid: + +if [ ! -f data/country_osm_grid.sql.gz ]; then #DOCS: + wget -O data/country_osm_grid.sql.gz http://www.nominatim.org/data/country_grid.sql.gz +fi #DOCS: + # The code must be built in a separate directory. Create this directory, # then configure and build Nominatim in there: