Mercurial > hg > soundsoftware-site
view 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 |
line wrap: on
line source
#!/bin/bash set -e infile=/var/www/code/deploy/config/database.yml if [ ! -f "$infile" ]; then echo "ERROR: Database config file $infile not found - has the database secret been interpolated from $infile.in correctly?" exit 2 fi if [ ! -f /var/www/code/config/database.yml ]; then cp "$infile" /var/www/code/config/database.yml fi