Commit e294f8c7 authored by Andreas Tille's avatar Andreas Tille
Browse files

New upstream version 22.1

parent 010be26a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ database alias = gnumed_v22
minimum postgresql version = 9.2
schema base directory = ../sql/v21-v22/fixups/
schema = $schema$
../dynamic/v22-release_notes-dynamic.sql
v22-release_notes-fixup.sql
$schema$

#----------------------------------
+1 −0
Original line number Diff line number Diff line
@@ -158,6 +158,7 @@ database alias = gnumed_v22
minimum postgresql version = 9.2
schema base directory = ../sql/v21-v22/fixups/
schema = $schema$
v22-release_notes-fixup.sql
$schema$

#----------------------------------
+1 −1
Original line number Diff line number Diff line
@@ -112,7 +112,7 @@
  <body>
    <!-- Primary Index -->
	<p><br><br>Dumped on 2018-03-18</p>
	<p><br><br>Dumped on 2018-04-05</p>
<h1><a name="index">Index of database - gnumed_v22</a></h1>
<ul>
    
+5 −0
Original line number Diff line number Diff line
@@ -40,6 +40,11 @@ CONF="/etc/gnumed/gnumed-backup.conf"
#==============================================================
set -o pipefail


# do not run twice
[ "${FLOCKER}" != "$0" ] && exec env FLOCKER="$0" flock --exclusive --nonblock "$0" "$0" "$@" || :


# load config file
if [ -r ${CONF} ] ; then
	. ${CONF}
+2 −0
Original line number Diff line number Diff line
@@ -17,6 +17,8 @@ GM_LOG_BASE="/var/log/gnumed/server"
GM_SERVER_DIR="/var/lib/gnumed/server/bootstrap"

#==============================================================
# do not run twice
[ "${FLOCKER}" != "$0" ] && exec env FLOCKER="$0" flock --exclusive --nonblock "$0" "$0" "$@" || :

# consider entirely removing this check, for example
# because it does not honour $GM_PORT
Loading