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 / deploy / vagrant / vagrant-provision.sh @ 1610:c6bee0e62957

History | View | Annotate | Download (246 Bytes)

1
#!/bin/bash
2

    
3
set -e
4

    
5
for f in /code-to-deploy/deploy/provision.d/[0-9]*.sh ; do
6
    case "$f" in
7
        *~) ;;
8
        *) echo "Running provisioning script: $f"
9
           /bin/bash "$f";;
10
    esac
11
done
12

    
13
echo "All provisioning scripts complete"