view deploy/provision.d/050-webapp-db.sh @ 1600:ed9c467ef922 dockerise

Add hggit extension
author Chris Cannam
date Wed, 23 Aug 2017 11:32:50 +0100
parents 83412a0a2389
children
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.gen
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