Mercurial > hg > soundsoftware-site
annotate deploy/provision.d/050-webapp-db.sh @ 1587:d8949733849d dockerise
Another rearrangement, to share provisioning scripts
author | Chris Cannam |
---|---|
date | Thu, 17 Aug 2017 11:55:29 +0100 |
parents | extra/soundsoftware/scripted-deploy/vagrant/provision.d/050-webapp-db.sh@ae8043b014c7 |
children | 94669513c53c |
rev | line source |
---|---|
Chris@1577 | 1 #!/bin/bash |
Chris@1577 | 2 |
Chris@1577 | 3 set -e |
Chris@1577 | 4 |
Chris@1587 | 5 infile=/var/www/code/deploy/config/database.yml |
Chris@1587 | 6 |
Chris@1587 | 7 if [ ! -f "$infile" ]; then |
Chris@1587 | 8 echo "ERROR: Database config file $infile not found - has the database secret been interpolated from $infile.in correctly?" |
Chris@1587 | 9 exit 2 |
Chris@1577 | 10 fi |
Chris@1577 | 11 |
Chris@1587 | 12 if [ ! -f /var/www/code/config/database.yml ]; then |
Chris@1587 | 13 cp "$infile" /var/www/code/config/database.yml |
Chris@1587 | 14 fi |
Chris@1587 | 15 |