annotate deploy/vagrant/vagrant-provision.sh @ 1590:c18460da6620 dockerise

Numerous deployment updates
author Chris Cannam
date Thu, 17 Aug 2017 16:04:36 +0100
parents d8949733849d
children 83412a0a2389
rev   line source
Chris@1577 1 #!/bin/bash
Chris@1577 2
Chris@1577 3 #!!! still not covered:
Chris@1577 4 # * https
Chris@1590 5 # * http auth for API (/sys) and /admin interfaces
Chris@1590 6 # * API keys and http auth for reposman and docgen
Chris@1577 7
Chris@1577 8 set -e
Chris@1577 9
Chris@1590 10 for f in /code-to-deploy/deploy/provision.d/[0-9]*.sh ; do
Chris@1577 11 case "$f" in
Chris@1577 12 *~) ;;
Chris@1577 13 *) echo "Running provision script: $f"
Chris@1577 14 /bin/bash "$f";;
Chris@1577 15 esac
Chris@1577 16 done
Chris@1577 17