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 / vagranttest / vagrant-provision.sh @ 1578:06ca2df3d7ca

History | View | Annotate | Download (278 Bytes)

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