Spotter-VM/ushahidi.sh

41 lines
1.5 KiB
Bash
Raw Normal View History

2018-01-24 15:18:55 +01:00
#!/bin/sh
set -e
2017-10-26 22:50:04 +02:00
SOURCE_DIR=$(realpath $(dirname "${0}"))/ushahidi
2017-10-26 22:50:04 +02:00
2018-01-24 15:18:55 +01:00
# Check prerequisites
docker image ls | grep -q mariadb || $(realpath $(dirname "${0}"))/mariadb.sh
2018-02-03 10:06:16 +01:00
docker image ls | grep -q postfix || $(realpath $(dirname "${0}"))/postfix.sh
service mariadb start
2017-10-26 22:50:04 +02:00
2018-01-24 15:18:55 +01:00
# Build Docker container
docker build -t ushahidi ${SOURCE_DIR}
cp ${SOURCE_DIR}/etc/init.d/ushahidi /etc/init.d/ushahidi
rc-update -u
2017-10-26 22:50:04 +02:00
# Create database
export USHAHIDI_PWD=$(head -c 18 /dev/urandom | base64)
2018-01-24 15:18:55 +01:00
envsubst <${SOURCE_DIR}/createdb.sql | docker exec -i mariadb mysql
2017-10-26 22:50:04 +02:00
# Configure Ushahidi
mkdir -p /srv/ushahidi/conf /srv/ushahidi/data
chown 8014:8014 /srv/ushahidi/data
2018-01-27 14:35:16 +01:00
envsubst <${SOURCE_DIR}/srv/ushahidi/conf/env >/srv/ushahidi/conf/env
cp ${SOURCE_DIR}/srv/ushahidi/conf/config.json /srv/ushahidi/conf/config.json
2017-10-26 22:50:04 +02:00
# Populate database
2018-01-27 14:35:16 +01:00
docker run --rm -h ushahidi --link mariadb -v /srv/ushahidi/conf/env:/srv/ushahidi/platform/.env ushahidi /srv/ushahidi/platform/bin/phinx migrate -c /srv/ushahidi/platform/application/phinx.php
2017-10-26 22:50:04 +02:00
# Create admin account
export USHAHIDI_ADMIN_USER=admin@example.com
export USHAHIDI_ADMIN_PWD=$(head -c 12 /dev/urandom | base64)
2018-01-24 15:18:55 +01:00
export USHAHIDI_ADMIN_HASH=$(docker run --rm ushahidi php -r "echo password_hash('${USHAHIDI_ADMIN_PWD}', PASSWORD_BCRYPT);")
envsubst <${SOURCE_DIR}/adminpwd.sql | docker exec -i mariadb mysql ushahidi
spotter-appmgr update-login ushahidi "${USHAHIDI_ADMIN_USER}" "${USHAHIDI_ADMIN_PWD}"
2017-10-26 22:50:04 +02:00
# Install cron job
2018-01-24 15:18:55 +01:00
cp ${SOURCE_DIR}/etc/periodic/15min/ushahidi /etc/periodic/15min/ushahidi
# Stop services required for build
service mariadb stop