Mercurial > hg > soundsoftware-site
view deploy/vagrant/vagrant-provision.sh @ 1628:9c5f8e24dadc live tip
Quieten this cron script
author | Chris Cannam |
---|---|
date | Tue, 25 Aug 2020 11:38:49 +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"