view deploy/vagrant/vagrant-provision.sh @ 1600:ed9c467ef922 dockerise

Add hggit extension
author Chris Cannam
date Wed, 23 Aug 2017 11:32:50 +0100
parents 83412a0a2389
children 07deb8466f65
line wrap: on
line source
#!/bin/bash

#!!! still not covered:
# * https
# * http auth for API (/sys) and /admin interfaces
# * sending email

set -e

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

echo "All provisioning scripts complete"