Unambiguous database

This commit is contained in:
Bob Mottram 2016-12-30 22:27:46 +00:00
parent 6b8fcd0248
commit f9ae15fe97
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ function matrix_configure_homeserver_yaml {
sed -i 's|no_tls: .*|no_tls: True|g' "${filepath}"
fi
sed -i 's|enable_registration_captcha.*|enable_registration_captcha: False|g' "${filepath}"
sed -i "s|database:.*|database: \"${MATRIX_DATA_DIR}/homeserver.db\"|g" "${filepath}"
sed -i "s|database: \".*|database: \"${MATRIX_DATA_DIR}/homeserver.db\"|g" "${filepath}"
sed -i "s|media_store_path:.*|media_store_path: \"${MATRIX_DATA_DIR}/media_store\"|g" "${filepath}"
sed -i "s|pid_file:.*|pid_file: \"${MATRIX_DATA_DIR}/homeserver.pid\"|g" "${filepath}"
}