2017-09-26 12:37:27 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-09-26 12:52:05 +02:00
|
|
|
# For production builds change to DEBUG=0 or comment the line entirely
|
2017-09-26 12:37:27 +02:00
|
|
|
export DEBUG=1
|
2017-09-26 12:52:05 +02:00
|
|
|
|
2017-09-26 12:37:27 +02:00
|
|
|
SOURCE_DIR=$(realpath $(dirname "${0}"))
|
|
|
|
|
2017-11-29 20:53:38 +01:00
|
|
|
# Install shared packages and perform OS customization
|
2017-09-26 12:37:27 +02:00
|
|
|
${SOURCE_DIR}/01-basic.sh
|
2017-11-29 20:53:38 +01:00
|
|
|
|
|
|
|
# Install applications
|
|
|
|
${SOURCE_DIR}/ckan.sh
|
|
|
|
# ${SOURCE_DIR}/crisiscleanup.sh
|
2017-12-02 01:16:14 +01:00
|
|
|
# ${SOURCE_DIR}/cts.sh
|
|
|
|
${SOURCE_DIR}/gnuhealth.sh
|
2017-11-29 20:53:38 +01:00
|
|
|
${SOURCE_DIR}/kanboard.sh
|
|
|
|
${SOURCE_DIR}/pandora.sh
|
|
|
|
${SOURCE_DIR}/sahana.sh
|
|
|
|
${SOURCE_DIR}/sambro.sh
|
|
|
|
${SOURCE_DIR}/seeddms.sh
|
|
|
|
${SOURCE_DIR}/ushahidi.sh
|
2017-09-26 12:52:05 +02:00
|
|
|
|
|
|
|
# Perform cleanup only if DEBUG environment variable is not set
|
|
|
|
if [ ${DEBUG:-0} -eq 0 ]; then
|
2017-11-29 20:53:38 +01:00
|
|
|
${SOURCE_DIR}/zz-cleanup.sh
|
2017-09-26 12:52:05 +02:00
|
|
|
fi
|