X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/14d4b9206c636adecb0812e60d682416b634af38..aba28ec9e0fef281d0228cfd6b5fc4986c8e2f18:/script/vagrant/setup/provision.sh?ds=sidebyside diff --git a/script/vagrant/setup/provision.sh b/script/vagrant/setup/provision.sh index 9cbe7849b..6522be165 100644 --- a/script/vagrant/setup/provision.sh +++ b/script/vagrant/setup/provision.sh @@ -1,34 +1,27 @@ #!/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.0 libruby2.0 ruby2.0-dev \ + 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 imagemagick +gem2.0 install bundler ## install the bundle necessary for openstreetmap-website pushd /srv/openstreetmap-website