Mercurial > hg > soundsoftware-site
view deploy/vagrant/vagrant-provision.sh @ 1613:90bed4e10cc8 deploy
Download file link
author | Chris Cannam |
---|---|
date | Wed, 30 Aug 2017 17:24:37 +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"