Skip to content
Snippets Groups Projects
Verified Commit 9301b599 authored by Jan Alexander Steffens (heftig)'s avatar Jan Alexander Steffens (heftig)
Browse files

matrix: Update bridge to 1.0.0

parent 5c92f503
No related branches found
No related tags found
No related merge requests found
...@@ -149,7 +149,7 @@ ...@@ -149,7 +149,7 @@
git: git:
repo: https://github.com/matrix-org/matrix-appservice-irc repo: https://github.com/matrix-org/matrix-appservice-irc
dest: /var/lib/synapse/matrix-appservice-irc dest: /var/lib/synapse/matrix-appservice-irc
version: 0.38.0 version: 1.0.0
force: true force: true
become: true become: true
become_user: synapse become_user: synapse
...@@ -159,9 +159,17 @@ ...@@ -159,9 +159,17 @@
- Restart matrix-appservice-irc - Restart matrix-appservice-irc
- name: Install matrix-appservice-irc - name: Install matrix-appservice-irc
community.general.npm: community.general.yarn:
path: /var/lib/synapse/matrix-appservice-irc path: /var/lib/synapse/matrix-appservice-irc
ci: true become: true
become_user: synapse
become_method: sudo
when: irc_git.changed
- name: Build matrix-appservice-irc
command: yarn build
args:
chdir: /var/lib/synapse/matrix-appservice-irc
become: true become: true
become_user: synapse become_user: synapse
become_method: sudo become_method: sudo
......
...@@ -457,7 +457,6 @@ ircService: ...@@ -457,7 +457,6 @@ ircService:
# Configuration for logging. Optional. Default: console debug level logging # Configuration for logging. Optional. Default: console debug level logging
# only. # only.
# This key CANNOT be hot-reloaded
logging: logging:
# Level to log on console/logfile. One of error|warn|info|debug # Level to log on console/logfile. One of error|warn|info|debug
level: "warn" level: "warn"
...@@ -692,3 +691,11 @@ database: ...@@ -692,3 +691,11 @@ database:
# For postgres, it must start with postgres:// # For postgres, it must start with postgres://
# For NeDB, it must start with nedb://. The path is relative to the project directory. # For NeDB, it must start with nedb://. The path is relative to the project directory.
connectionString: "socket://synapse:{{ vault_postgres_users.synapse }}@/run/postgresql?db=irc" connectionString: "socket://synapse:{{ vault_postgres_users.synapse }}@/run/postgresql?db=irc"
# Enable running IRC connections out of a secondary process.
# See https://matrix-org.github.io/matrix-appservice-irc/latest/connection_pooling.html for more information
# connectionPool:
# # The Redis URI to connect to
# redisUrl: redis://user:password@host:port/dbnum
# # Should the connections persist after the bridge successfully shuts down?
# persistConnectionsOnShutdown: true
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment