view 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
line wrap: on
line source
#!/bin/bash

#!!! still not covered:
# * https
# * http auth for API (/sys) and /admin interfaces
# * API keys and http auth for reposman and docgen

set -e

for f in /code-to-deploy/deploy/provision.d/[0-9]*.sh ; do
    case "$f" in
        *~) ;;
        *) echo "Running provision script: $f"
           /bin/bash "$f";;
    esac
done