Mercurial > hg > soundsoftware-site
view deploy/provision.d/050-webapp-db.sh @ 1589:94669513c53c dockerise
Docs etc
author | Chris Cannam |
---|---|
date | Thu, 17 Aug 2017 13:56:15 +0100 |
parents | d8949733849d |
children | 83412a0a2389 |
line wrap: on
line source
#!/bin/bash set -e # Copy across the database config file (the source file has presumably # been generated from a skeleton, earlier in provisioning) infile=/var/www/code/deploy/config/database.yml outfile=/var/www/code/config/database.yml if [ ! -f "$outfile" ]; then 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 cp "$infile" "$outfile" fi