/etc/gnumed/gnumed-restore.conf is in gnumed-server 19.6-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | #------------------------------------------------------------
# $Source: /sources/gnumed/gnumed/gnumed/client/etc/gnumed/gnumed-restore.conf.example,v $
# $Id: gnumed-restore.conf.example,v 1.2 2009/01/08 21:12:42 ncq Exp $
#------------------------------------------------------------
#
# this is a shell fragment used by gm-restore_from_backup.sh
#
# copy this file to /etc/gnumed/gnumed-restore.conf and
# configure appropriately
#
# if the PostgreSQL user $GM_DBO needs a password you will
# have to configure that using a .pgpass file (see the PG
# manual for how to do that)
#
# http://www.postgresql.org/docs/9.1/static/libpq-pgpass.html
#
#------------------------------------------------------------
# if your PostgreSQL server is running on another port
GM_PORT="5432"
# set this to a writable directory on a drive where
# there is plenty of disk space available
WORK_DIR_BASE="${HOME}/gnumed"
# where to store log files,
# note that if you chose to write logs to the work
# directory they will get lost during cleanup if the
# restore process succeeds
LOG_BASE="."
#============================================================
# $Log: gnumed-restore.conf.example,v $
# Revision 1.2 2009/01/08 21:12:42 ncq
# - remove /bin/bash
#
# Revision 1.1 2008/08/28 15:11:48 ncq
# - moved here
#
# Revision 1.3 2008/08/01 10:08:49 ncq
# - /bin/sh -> /bin/bash
#
# Revision 1.2 2007/07/03 09:57:29 ncq
# - WORK_DIR_BASE, LOG_BASE
#
# Revision 1.1 2007/05/08 11:57:40 ncq
# - new
#
#
|