Mercurial > hg > soundsoftware-site
view deploy/vagrant/vagrant-provision.sh @ 1609:5486a5848ad8 deploy
Load from deploy-source root, not deployed root (consistent with check in prepare.sh)
author | Chris Cannam |
---|---|
date | Tue, 29 Aug 2017 11:52:36 +0100 |
parents | 07deb8466f65 |
children |
line wrap: on
line source
#!/bin/bash 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"