1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2026-01-15 09:59:25 +00:00
Files
mailcow-dockerized/build-all.sh
2016-12-12 09:26:27 +01:00

15 lines
303 B
Bash
Executable File

#!/bin/bash
/bin/bash port-check.sh
[[ $? != 0 ]] && exit 1
/bin/bash build-network.sh
/bin/bash build-pdns.sh
[[ $? != 0 ]] && exit 1
for buildx in $(ls build-*.sh | grep -vE "all|network|pdns"); do
echo "Starting build file ${buildx} ..."
/bin/bash ${buildx}
done
/bin/bash fix-permissions.sh