annotate scripts/restore-usps.sh @ 34:d8f906afd895

fix lf's
author Dave smith <smith@nwoca.org>
date Wed, 20 Jan 2016 10:41:23 -0500
parents b4ea91a25193
children 1c74d1289739
rev   line source
28
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
1
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
2 if [ -z "$1" ]
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
3 then
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
4 echo "Usage: `basename $0` {backup file to restore}"
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
5 echo " filename must relative to the container's file system. (e.g. /backup/filename)"
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
6 exit $E_NOARGS
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
7 fi
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
8
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
9 docker-compose stop uspsapp
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
10 docker-compose restart uspsdb
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
11 docker-compose run --rm uspsdb sh -c \
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
12 "gunzip -f $1 -c | psql --host=uspsdb --username=postgres"
443aa0be3f09 update backup/restore scripts
smith@nwoca.org
parents: 27
diff changeset
13 docker-compose start uspsapp
34
d8f906afd895 fix lf's
Dave smith <smith@nwoca.org>
parents: 30
diff changeset
14