Mercurial > hg > soundsoftware-site
view deploy/vagrant/vagrant-provision.sh @ 1596:45b0571b684d dockerise
Minor docs, fixes, test
author | Chris Cannam |
---|---|
date | Fri, 18 Aug 2017 20:27:40 +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"