diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/deploy/provision.d/050-webapp-db.sh	Thu Aug 17 11:55:29 2017 +0100
@@ -0,0 +1,15 @@
+#!/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
+