To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / extra / soundsoftware / scripted-deploy / vagrant / vagrant-provision.sh @ 1583:0dcd4f8c2b8a

History | View | Annotate | Download (297 Bytes)

1 1577:e38eee2e1d47 Chris
#!/bin/bash
2
3
#!!! still not covered:
4
# * cron jobs
5
# * https
6
# * web fonts
7
8
set -e
9
10 1582:f26dc3004b3f Chris
for f in /vagrant-code/extra/soundsoftware/scripted-deploy/vagrant/provision.d/[0-9]* ; do
11 1577:e38eee2e1d47 Chris
    case "$f" in
12
        *~) ;;
13
        *) echo "Running provision script: $f"
14
           /bin/bash "$f";;
15
    esac
16
done