X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/f2d13c075660efb9582d7fb600bd6798d7a382ca..e9483dcc5d51e034a9ef37446df1894cbdc57ee5:/script/vagrant/setup/provision.sh diff --git a/script/vagrant/setup/provision.sh b/script/vagrant/setup/provision.sh index 21d5daf59..ad743ae36 100644 --- a/script/vagrant/setup/provision.sh +++ b/script/vagrant/setup/provision.sh @@ -1,47 +1,68 @@ #!/usr/bin/env bash +# abort on error +set -e + # set locale to UTF-8 compatible. apologies to non-english speakers... +locale-gen en_GB.utf8 update-locale LANG=en_GB.utf8 LC_ALL=en_GB.utf8 -locale-gen export LANG=en_GB.utf8 export LC_ALL=en_GB.utf8 # make sure we have up-to-date packages apt-get update -## vagrant grub-pc fix from: https://gist.github.com/jrnickell/6289943 -# parameters -echo "grub-pc grub-pc/kopt_extracted boolean true" | debconf-set-selections -echo "grub-pc grub2/linux_cmdline string" | debconf-set-selections -echo "grub-pc grub-pc/install_devices multiselect /dev/sda" | debconf-set-selections -echo "grub-pc grub-pc/install_devices_failed_upgrade boolean true" | debconf-set-selections -echo "grub-pc grub-pc/install_devices_disks_changed multiselect /dev/sda" | debconf-set-selections -# vagrant grub fix -dpkg-reconfigure -f noninteractive grub-pc - # upgrade all packages apt-get upgrade -y # install packages as explained in INSTALL.md -apt-get install -y ruby1.9.1 libruby1.9.1 ruby1.9.1-dev ri1.9.1 \ - libmagickwand-dev libxml2-dev libxslt1-dev nodejs \ - apache2 apache2-threaded-dev build-essential git-core \ - postgresql postgresql-contrib libpq-dev postgresql-server-dev-all \ - libsasl2-dev -gem1.9.1 install bundle +apt-get install -y ruby2.7 libruby2.7 ruby2.7-dev \ + libmagickwand-dev libxml2-dev libxslt1-dev nodejs yarnpkg \ + apache2 apache2-dev build-essential git-core firefox-geckodriver \ + postgresql postgresql-contrib libpq-dev \ + libsasl2-dev imagemagick libffi-dev libgd-dev libarchive-dev libbz2-dev +gem2.7 install rake +gem2.7 install --version "~> 2.1.4" bundler ## install the bundle necessary for openstreetmap-website pushd /srv/openstreetmap-website # do bundle install as a convenience -sudo -u vagrant -H bundle install +bundle install --retry=10 --jobs=2 +# do yarn install as a convenience +bundle exec rake yarn:install # create user and database for openstreetmap-website -sudo -u postgres createuser -s vagrant -sudo -u vagrant -H createdb -E UTF-8 -O vagrant openstreetmap -sudo -u vagrant -H createdb -E UTF-8 -O vagrant osm_test -# add btree_gist extension -sudo -u vagrant -H psql -c "create extension btree_gist" openstreetmap -# TODO: build and set up postgres extensions +db_user_exists=`sudo -u postgres psql postgres -tAc "select 1 from pg_roles where rolname='vagrant'"` +if [ "$db_user_exists" != "1" ]; then + sudo -u postgres createuser -s vagrant + sudo -u vagrant createdb -E UTF-8 -O vagrant openstreetmap + sudo -u vagrant createdb -E UTF-8 -O vagrant osm_test + # add btree_gist extension + sudo -u vagrant psql -c "create extension btree_gist" openstreetmap + sudo -u vagrant psql -c "create extension btree_gist" osm_test +fi + + +# install PostgreSQL functions +sudo -u vagrant psql -d openstreetmap -f db/functions/functions.sql +################################################################################ +# *IF* you want a vagrant image which supports replication (or perhaps you're +# using this script to provision some other server and want replication), then +# uncomment the following lines (until popd) and comment out the one above +# (functions.sql). +################################################################################ +#pushd db/functions +#sudo -u vagrant make +#sudo -u vagrant psql openstreetmap -c "CREATE OR REPLACE FUNCTION maptile_for_point(int8, int8, int4) RETURNS int4 AS '/srv/openstreetmap-website/db/functions/libpgosm.so', 'maptile_for_point' LANGUAGE C ST#RICT" +#sudo -u vagrant psql openstreetmap -c "CREATE OR REPLACE FUNCTION tile_for_point(int4, int4) RETURNS int8 AS '/srv/openstreetmap-website/db/functions/libpgosm.so', 'tile_for_point' LANGUAGE C STRICT" +#sudo -u vagrant psql openstreetmap -c "CREATE OR REPLACE FUNCTION xid_to_int4(xid) RETURNS int4 AS '/srv/openstreetmap-website/db/functions/libpgosm.so', 'xid_to_int4' LANGUAGE C STRICT" +#popd + + # set up sample configs -sudo -u vagrant cp config/example.database.yml config/database.yml -sudo -u vagrant cp config/example.application.yml config/application.yml +if [ ! -f config/database.yml ]; then + sudo -u vagrant cp config/example.database.yml config/database.yml +fi +touch config/settings.local.yml +# migrate the database to the latest version +sudo -u vagrant bundle exec rake db:migrate popd