96bfc78030
This doesn't update the occurrence in the control file as it says in control.in: To test: * Verify all occurrences of the README file have been updated. Exceptions: * control (see above) * changelog Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de> (cherry picked from commit0a49f71e8f
) Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com> (cherry picked from commite067575e0a
) Signed-off-by: Lucas Gass <lucas@bywatersolutions.com>
22 lines
472 B
Bash
22 lines
472 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
dbc_generate_include="template:/etc/koha/koha-conf.xml"
|
|
dbc_generate_include_args="
|
|
-o template_infile=/usr/share/koha/koha-conf.xml.in
|
|
-O root:www-data -m 0640
|
|
"
|
|
|
|
. /usr/share/debconf/confmodule
|
|
. /usr/share/dbconfig-common/dpkg/postinst.mysql
|
|
dbc_go koha $@
|
|
|
|
#DEBHELPER#
|
|
|
|
cat <<eof
|
|
|
|
Please see https://wiki.koha-community.org/wiki/Installation_Documentation
|
|
for instructions on how to configure things after installing the koha package.
|
|
|
|
eof
|