Mercurial > hg > soundsoftware-site
view deploy/vagrant/vagrant-provision.sh @ 1592:72d9219f2f19 dockerise
Rejig explore page
author | Chris Cannam |
---|---|
date | Fri, 18 Aug 2017 14:46:06 +0100 |
parents | c18460da6620 |
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