This file is indexed.

/etc/gnumed/gnumed-restore.conf is in gnumed-server 20.10-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
#------------------------------------------------------------
# GNUmed database restore configuration
#------------------------------------------------------------
#
# 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/current/static/libpq-pgpass.html
#
#------------------------------------------------------------

# if your PostgreSQL server is running on different port
# then you need to configure that here,
# note that setting PGPORT elsewhere doesn't cut it
GM_PORT="5432"

# set this to a writable directory on a drive where
# there is plenty of disk space available
WORK_DIR_BASE="/tmp/gnumed"

# where to store log files,
# note that if you chose to write logs to the work
# directory they may get lost during cleanup if the
# restore process succeeds
LOG_TS=`date +%Y-%m-%d`
LOG_BASE="${HOME}/.gnumed/logs/restore-${LOG_TS}"

#============================================================