mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
0969d688e3
Make sure that users' changes to the config files are preserved. Fixes #4440.
13 lines
295 B
Bash
Executable File
13 lines
295 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
. /usr/share/debconf/confmodule
|
|
|
|
# try to update the debconf db according to whatever is in the config files
|
|
/opt/venvs/matrix-synapse/lib/manage_debconf.pl read || true
|
|
|
|
db_input high matrix-synapse/server-name || true
|
|
db_input high matrix-synapse/report-stats || true
|
|
db_go
|