2017-12-19 19:22:36 +01:00
|
|
|
#!/bin/sh
|
2017-09-26 12:37:27 +02:00
|
|
|
|
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-12-19 19:22:36 +01:00
|
|
|
${SOURCE_DIR}/basic.sh
|
2017-11-29 20:53:38 +01:00
|
|
|
|
|
|
|
# Install applications
|
|
|
|
${SOURCE_DIR}/ckan.sh
|
2018-04-21 22:30:25 +02:00
|
|
|
# ${SOURCE_DIR}/crisiscleanup.sh
|
2017-12-02 01:16:14 +01:00
|
|
|
# ${SOURCE_DIR}/cts.sh
|
2018-04-21 22:43:57 +02:00
|
|
|
${SOURCE_DIR}/frontlinesms.sh
|
2017-12-02 01:16:14 +01:00
|
|
|
${SOURCE_DIR}/gnuhealth.sh
|
2017-11-29 20:53:38 +01:00
|
|
|
${SOURCE_DIR}/kanboard.sh
|
2017-12-08 20:32:06 +01:00
|
|
|
${SOURCE_DIR}/mifosx.sh
|
|
|
|
${SOURCE_DIR}/motech.sh
|
2018-04-21 22:57:56 +02:00
|
|
|
${SOURCE_DIR}/opendatakit-build.sh
|
|
|
|
${SOURCE_DIR}/opendatakit.sh
|
2018-03-25 14:42:23 +02:00
|
|
|
${SOURCE_DIR}/omk.sh
|
2017-11-29 20:53:38 +01:00
|
|
|
${SOURCE_DIR}/pandora.sh
|
|
|
|
${SOURCE_DIR}/sahana.sh
|
|
|
|
${SOURCE_DIR}/sambro.sh
|
|
|
|
${SOURCE_DIR}/seeddms.sh
|
2017-12-04 21:08:04 +01:00
|
|
|
${SOURCE_DIR}/sigmah.sh
|
2017-11-29 20:53:38 +01:00
|
|
|
${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
|