To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / deploy / vagrant / vagrant-provision.sh @ 1597:eeacb8332051
History | View | Annotate | Download (350 Bytes)
| 1 |
#!/bin/bash |
|---|---|
| 2 |
|
| 3 |
#!!! still not covered: |
| 4 |
# * https |
| 5 |
# * http auth for API (/sys) and /admin interfaces |
| 6 |
# * sending email |
| 7 |
|
| 8 |
set -e |
| 9 |
|
| 10 |
for f in /code-to-deploy/deploy/provision.d/[0-9]*.sh ; do |
| 11 |
case "$f" in |
| 12 |
*~) ;; |
| 13 |
*) echo "Running provisioning script: $f" |
| 14 |
/bin/bash "$f";; |
| 15 |
esac |
| 16 |
done |
| 17 |
|
| 18 |
echo "All provisioning scripts complete" |