Mercurial > hg > soundsoftware-site
view deploy/vagrant/vagrant-provision.sh @ 1619:ae767bbd4cf3 live
Reminder about crontab email
author | Chris Cannam |
---|---|
date | Fri, 23 Feb 2018 10:53:52 +0000 |
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"