Mercurial > hg > soundsoftware-site
view extra/soundsoftware/scripted-deploy/vagrant/vagrant-provision.sh @ 1583:0dcd4f8c2b8a dockerise
Small update, commit Gemfile.lock
author | Chris Cannam |
---|---|
date | Wed, 16 Aug 2017 12:29:01 +0100 |
parents | f26dc3004b3f |
children | d0d59d12db94 |
line wrap: on
line source
#!/bin/bash #!!! still not covered: # * cron jobs # * https # * web fonts set -e for f in /vagrant-code/extra/soundsoftware/scripted-deploy/vagrant/provision.d/[0-9]* ; do case "$f" in *~) ;; *) echo "Running provision script: $f" /bin/bash "$f";; esac done