Mercurial > hg > soundsoftware-site
view deploy/vagrant/vagrant-provision.sh @ 1622:f3144e23ca1d live
Don't try to use cgitb, it just causes problems with Apache CGI interface
author | Chris Cannam |
---|---|
date | Fri, 10 Aug 2018 11:22:30 +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"