Slavi Pantaleev
3d1ea3e79e
Auto-delete old matrix scripts from /usr/local/bin
2022-11-27 10:10:00 +02:00
Slavi Pantaleev
d1b2fd50be
Remove manual service enablement/start for backup-borg
...
This is done via devture_systemd_service_manager_services_list_auto
already.
2022-11-27 10:04:03 +02:00
Slavi Pantaleev
2688e8bfc3
Optimize initial installation by not reloading systemd after each .service install
...
We expect `--tags=start` to handle systemd reloading, so we don't need
to do it manually each time we install/uninstall a .service file.
2022-11-27 10:02:45 +02:00
Slavi Pantaleev
707e909b9b
/usr/local/bin/matrix-ssl-lets-encrypt-certificates-renew -> /matrix/ssl/bin/lets-encrypt-certificates-renew
2022-11-27 09:53:23 +02:00
Slavi Pantaleev
fb86f6d5e7
/usr/local/bin/matrix-remove-all -> /matrix/bin/remove-all
2022-11-27 09:47:02 +02:00
Slavi Pantaleev
c928148261
Make uninstall tasks for Synapse delete bin/
2022-11-27 09:43:25 +02:00
Slavi Pantaleev
40cf9cd72c
/usr/local/bin/matrix-dendrite-create-account -> /matrix/dendrite/bin/create-account
2022-11-27 09:42:10 +02:00
Slavi Pantaleev
7c5c3aedc4
Put s3-storage-provider scripts under /matrix/synapse/ext/s3-storage-provider/bin, not /usr/local/bin
2022-11-27 09:38:34 +02:00
Slavi Pantaleev
735e7355a5
Rename variable (matrix_synapse_ext_s3_storage_provider_path -> matrix_synapse_ext_s3_storage_provider_base_path)
2022-11-27 09:28:29 +02:00
Slavi Pantaleev
72744f9db9
/usr/local/bin/matrix-synapse-register-user -> /matrix/synapse/bin/register-user
2022-11-27 09:26:18 +02:00
Slavi Pantaleev
7b43ef34b7
Remove more hardcoded matrix-postgres references
2022-11-27 09:16:18 +02:00
Slavi Pantaleev
3d5d843418
Replace some devture_postgres_identifier instances with devture_postgres_connection_hostname
2022-11-27 08:31:54 +02:00
Slavi Pantaleev
eedf5ad94d
Remove some hardcoded matrix-postgres references
2022-11-27 08:23:43 +02:00
Slavi Pantaleev
04b9483f0d
Switch from matrix-postgres to com.devture.ansible.role.postgres
2022-11-27 08:04:31 +02:00
Slavi Pantaleev
dd9ae0d25c
Fix accidentally swapped tags (rust-synapse-compress-state and update-user-password)
2022-11-27 07:24:39 +02:00
Slavi Pantaleev and GitHub
1688983436
Merge pull request #2299 from etkecc/patch-127
...
update mautrix-telegram 0.12.1 -> 0.12.2
2022-11-26 20:51:02 +02:00
Slavi Pantaleev
018a609e47
Simplify matrix_postgres_backup_databases definition
...
Related to 71de7cd8cd
2022-11-26 18:57:45 +02:00
Slavi Pantaleev
71de7cd8cd
Simplify matrix_backup_borg_postgresql_databases definition
...
There was no need to add `synapse` to the list manually
and then add all other additional databases.
When the `synapse` database was the main database, this made sense.
Since a long time ago already, ALL databases are "additional" databases,
so the `synapse` database is part of that list.
We could additional add the main (`matrix`) database to this list,
but there's probably no point in backing that one up.
2022-11-26 18:53:54 +02:00
Slavi Pantaleev and GitHub
9427f9408d
Merge pull request #2298 from pub-solar/docs/synapse-oidc-keycloak
...
Update docs on how to use synapse & keycloak OIDC
2022-11-26 17:23:31 +02:00
Slavi Pantaleev
fe4c2d73f4
Update Ansible version requirements
...
Tests were carried out like this:
- `virtualenv3 env`
- `./env/bin/pip install ansible==4.10.0 ansible-core==2.11.7`
- `./env/bin/ansible-playbook .....`
The lowest version of `ansible-core` available on PyPI right now is
2.11.0. That version has trouble with `ansible==4.0.0` though.
The errors we were hitting seemed to be resolved by others online by
using `ansible==4.10.0` instead, which has a minimum `ansible-core`
requirement of `2.11.7`, so that's what we went with.
Older versions of Ansible may work, but.. I'm having trouble
installing them and don't want to spend too much time on digging through
ancient versions and testing them out. People should just learn to run
up-to-date software.
2022-11-26 16:45:07 +02:00
Slavi Pantaleev
16c18b0344
Upgrade Hydrogen (v0.3.4 -> v0.3.5)
2022-11-25 18:59:01 +02:00
Slavi Pantaleev
fa523c6472
Remove blank lines
2022-11-25 17:36:42 +02:00
Slavi Pantaleev
a04f6f4e3d
Optimize uninstall tasks a bit
...
- forego removing Docker images - it's not effective anyway, because it
only removes the last version.. which is a drop in the bucket, usually
- do not reload systemd - it's none of our business. `--tags=start`,
etc., handle this
- combine all uninstall tasks under a single block, which only runs if
we detect traces (a leftover systemd .service file) of the component.
If no such .service is detected, we skip them all. This may lead to
incorect cleanup in rare cases, but is good enough for the most part.
2022-11-25 17:28:57 +02:00
Slavi Pantaleev
8456657f21
Announce install-* tags
2022-11-25 16:15:19 +02:00
Slavi Pantaleev
61f67d8f0a
Add install-* tags for quicker runs
2022-11-25 16:02:51 +02:00
Slavi Pantaleev
34c01da9d2
Ensure consistent password_hash results regardless of whether crypt or passlib is used
...
Ansible recently started showing warnings about `crypt` being
deprecated. If one installs `passlib`, the `password_hash` values that
are generated would be different by default. With this patch, we ensure
consistency regardless of which one is used.
After this patch, password hashes (and UUIDs derived from them) will
change once, but they should be stable after that.
These hashes changing is not a problem, because the playbook
changes all references to the new values. Changes are only a problem if
they're done partially and with different tools.
For example:
- `--tags=setup-COMPONENT` with `passlib`
- `--tags=setup-postgres` with `crypt` (no `passlib`)
If so, the Postgres database password's value will differ for the
configuration generated for `COMPONENT`.
The `rounds=` value is arbitrary. It doesn't matter what it is,
as long as it's different than the default for `crypt` (5000)
and the default for `passlib` for `sha512` (656000).
Source (https://docs.ansible.com/ansible/latest/playbook_guide/playbooks_filters.html ):
> To ensure idempotency, specify rounds to be neither crypt’s nor passlib’s default, which is 5000 for crypt and a variable value (535000 for sha256, 656000 for sha512) for passlib
2022-11-25 11:41:16 +02:00
Slavi Pantaleev
42f3c3cbf6
Improve command for connecting to additional container networks
2022-11-25 10:22:25 +02:00
Slavi Pantaleev
b59981f03c
Remove incorrectly places task
...
Fixes https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/2297
2022-11-25 06:17:14 +02:00
Slavi Pantaleev
9c0cf5481a
Try to be more helpful when matrix_homeserver_generic_secret_key appears to be undefined
2022-11-24 18:42:01 +02:00
Slavi Pantaleev
663a17ea10
Fix ansible-lint-reported errors
2022-11-24 17:39:34 +02:00
Slavi Pantaleev
c37cf42427
Do not delete and re-create Synapse worker configs needlessly
...
We had checks to avoid stopping/deleting systemd services for workers
that used to exist and will continue to exist, but we were deleting
config files for workers each time.. Only to recreate them again later.
This lead to:
- too many misleading "changed" tasks
- too much unnecessary work
- potential failures during playbook execution possibly leaving the
system in a bad state (no worker config files)
2022-11-24 17:06:31 +02:00
Slavi Pantaleev
2e7b5c7b02
Untangle the setup import/include mess in matrix-synapse
2022-11-24 16:27:11 +02:00
Slavi Pantaleev
d29b0aeddb
Replace even more import_tasks calls with include_tasks
2022-11-24 15:19:42 +02:00
Slavi Pantaleev
7c2a7a8eb6
Replace most import_tasks calls with include_tasks for improved performance
2022-11-24 11:33:45 +02:00
Slavi Pantaleev and GitHub
5c3df22c35
Merge pull request #2293 from jpdown/update-traefik-example
...
Add service declaration to sample traefik config
2022-11-24 08:11:34 +02:00
Slavi Pantaleev and GitHub
d9ab60fbf2
Merge pull request #2289 from etkecc/patch-126
...
Update grafana 9.2.5 -> 9.2.6
2022-11-23 18:06:55 +02:00
Slavi Pantaleev
787a82d6e8
Combine matrix user/group set_fact calls into one
2022-11-23 17:07:52 +02:00
Slavi Pantaleev
4d881477a3
Add matrix_homeserver_enabled variable
...
We need this to control whether `('matrix-' + matrix_homeserver_implementation + '.service')`
would get injected into `devture_systemd_service_manager_services_list_auto`
2022-11-23 16:56:39 +02:00
Slavi Pantaleev
dd4f8df905
Remove unnecessary matrix_dendrite_role_executed
2022-11-23 16:15:33 +02:00
Slavi Pantaleev
8c180306ab
Remove unnecessary matrix_conduit_role_executed
2022-11-23 16:14:59 +02:00
Slavi Pantaleev
07c23b7cb0
Remove matrix_synapse_role_executed and various tasks that check it
...
This was useful when the order of these roles in relation to Synapse
mattered (when we were injecting stuff into Synapse variables during
runtime). This is no longer the case since 0ea7cb5d18 , so all of
this can be removed.
2022-11-23 16:13:07 +02:00
Slavi Pantaleev
735bacca89
Do not run matrix-nginx-proxy config injection tasks unless necessary
...
These `init.yml` (now `inject_into_nginx_proxy.yml`) tasks do not need
to `always` run. They only need to run for `setup-all` and
`setup-nginx-proxy`. Unless we're dealing with these 2 tags, we can
spare ourselves a lot of work.
This patch also moves the `when` statement from `init.yml` into
`main.yml` in an effort to further optimize things by potentially
avoiding the extra file include.
2022-11-23 15:52:58 +02:00
Slavi Pantaleev
d829884642
Remove some old checks
2022-11-23 14:59:05 +02:00
Slavi Pantaleev
54cacc927e
Upgrade com.devture.ansible.role.docker_sdk_for_python
2022-11-23 14:33:07 +02:00
Slavi Pantaleev
1bd3a27acd
Do not try to enable non-enableable matrix_ssl_renewal_systemd_units_list
2022-11-23 13:00:15 +02:00
Slavi Pantaleev
f696928b7d
Fix variable typos
2022-11-23 12:18:35 +02:00
Slavi Pantaleev
ccfaefa4d2
Add service groups
2022-11-23 11:45:47 +02:00
Slavi Pantaleev
93d4f8d425
Replace matrix-common-after systemd service management with com.devture.ansible.role.systemd_service_manager
2022-11-23 11:45:46 +02:00
Slavi Pantaleev
eec5de7aba
Remove old systemd service checks
...
These are not even caused by Archlinux, but by running buggy Ansible on old Ubuntu
while targeting modern servers (like Archlinux, but also others, ..).
We shouldn't employ ugly workarounds like this. We should tell people to
avoid running buggy Ansible or bad distros like Ubuntu, even.
2022-11-23 11:45:46 +02:00
Slavi Pantaleev
360e643f84
Add service priorities - try to stop/start them in an optimal order
2022-11-23 11:45:46 +02:00
Slavi Pantaleev
0ea7cb5d18
Remove various init.yml files - initialize systemd services, etc., statically (not at runtime)
2022-11-23 11:45:46 +02:00
Slavi Pantaleev and GitHub
97ee2230a9
Merge pull request #2287 from etkecc/patch-125
...
Update element 1.11.14 -> 1.11.15
2022-11-23 07:07:13 +02:00
Slavi Pantaleev and GitHub
b4eb3b466f
Merge pull request #2286 from array-in-a-matrix/stats
...
Add statistics reporting for dendrite
2022-11-22 19:11:35 +02:00
Slavi Pantaleev
e37db0c888
Upgrade Synapse (v1.71.0 -> v1.72.0)
2022-11-22 16:41:14 +02:00
Slavi Pantaleev and GitHub
4c711dcc7d
Merge pull request #2285 from etkecc/fix-user-creator
...
fix user creator role
2022-11-22 16:26:59 +02:00
Slavi Pantaleev
b90956069c
Fix matrix_architecture sanity check
2022-11-22 09:25:29 +02:00
Slavi Pantaleev
6f865a7e0b
Announce some playbook changes
2022-11-22 09:23:18 +02:00
Slavi Pantaleev
2ad6bd87c7
Determine matrix_architecture automatically
2022-11-22 09:22:56 +02:00
Slavi Pantaleev
a98f249e40
Remove old cleanup tasks
2022-11-22 09:02:37 +02:00
Slavi Pantaleev
d8f2141eb0
Install Docker via geerlingguy.docker Galaxy role
2022-11-22 09:01:26 +02:00
Slavi Pantaleev
7ac27becaf
Upgrade ddclient (v3.10.0-ls103 -> v3.10.0-ls105)
2022-11-22 08:33:54 +02:00
Slavi Pantaleev and GitHub
6d56a786a3
Merge pull request #2283 from array-in-a-matrix/patch-8
...
added dendrite config doc link
2022-11-21 08:06:10 +02:00
Slavi Pantaleev
433405d9d3
Try to fix ansible-lint Github action
2022-11-20 19:13:00 +02:00
Slavi Pantaleev
4ffb558b6d
Pin ansible-community/ansible-lint-action version
2022-11-20 18:04:50 +02:00
Slavi Pantaleev
e360b82e9b
Try to fix ansible-lint Github action
2022-11-20 18:04:23 +02:00
Slavi Pantaleev
6a870a07b2
Fix ansible-lint-reported errors
2022-11-20 18:02:50 +02:00
Slavi Pantaleev
377e703746
Fixup Traefik example configuration
...
Related to e9e84341a9
2022-11-20 18:01:44 +02:00
Slavi Pantaleev
e9e84341a9
Reverse-proxy to Synapse via matrix-synapse-reverse-proxy-companion
...
Fixes https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/2090
2022-11-20 16:43:33 +02:00
Slavi Pantaleev
424de93f82
Remove useless matrix_nginx_proxy_synapse_presence_disabled variable definition
2022-11-20 11:13:23 +02:00
Slavi Pantaleev and GitHub
0365fea2fc
Merge pull request #2279 from DennisCiba/master
...
Restructure the list of services in the README.md
2022-11-20 10:14:35 +02:00
Slavi Pantaleev and GitHub
3e78d55c32
Merge pull request #2278 from etkecc/postmoogle-099
...
update postmoogle 0.9.8 -> 0.9.9
2022-11-19 09:08:03 +02:00
Slavi Pantaleev and GitHub
049fdbfef6
Merge pull request #2277 from etkecc/patch-124
...
Update ntfy 1.29.0 -> 1.29.1
2022-11-18 08:48:32 +02:00
Slavi Pantaleev and GitHub
15049d75cf
Merge pull request #2275 from etkecc/patch-123
...
update prometheus 2.40.1 -> 2.40.2
2022-11-17 19:34:41 +02:00
Slavi Pantaleev and GitHub
2b2eb290bd
Merge pull request #2272 from etkecc/patch-122
...
Update grafana 9.2.4 -> 9.2.5
2022-11-16 22:22:11 +02:00
Slavi Pantaleev and GitHub
3a053a26de
Merge pull request #2262 from llasse/add-ma1sd-dockernetworks
...
added matrix_ma1sd_container_additional_networks
2022-11-16 15:44:35 +02:00
Slavi Pantaleev and GitHub
28363dfee9
Merge pull request #2270 from etkecc/patch-121
...
Update mautrix-whatsapp 0.7.1 -> 0.7.2
2022-11-16 13:29:53 +02:00
Slavi Pantaleev and GitHub
494d015e82
Merge pull request #2250 from felixx9/patch-4
...
add how to integrate
2022-11-16 11:56:34 +02:00
Slavi Pantaleev and GitHub
9c2dedfdeb
Reorganize a bit
2022-11-16 11:56:22 +02:00
Slavi Pantaleev
40e8ef0c70
Do not tell people to use latest Borgmatic - it won't help with Postgres v15
...
Related to https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/2259#issuecomment-1312737960
2022-11-16 11:50:05 +02:00
Slavi Pantaleev and GitHub
7a4918da15
Merge pull request #2269 from etkecc/patch-120
...
Update mautrix-googlechat 0.3.3 -> 0.4.0
2022-11-16 09:13:11 +02:00
Slavi Pantaleev and GitHub
a93308d190
Merge pull request #2266 from etkecc/patch-119
...
Update jitsi stable-7882 -> stable-8044
2022-11-15 18:01:39 +02:00
Slavi Pantaleev and GitHub
a8261cb108
Merge pull request #2265 from etkecc/patch-118
...
Update mautrix-facebook 0.4.0 -> 0.4.1
2022-11-15 18:01:11 +02:00
Slavi Pantaleev and GitHub
943189a9aa
Merge pull request #2259 from throny/patch-3
...
warn users about upgrading to pg15 when using borg
2022-11-13 08:54:32 +02:00
Slavi Pantaleev and GitHub
4a229d6870
Merge pull request #2260 from etkecc/patch-117
...
Update ntfy 1.28.0 -> 1.29.0
2022-11-13 08:53:13 +02:00
Slavi Pantaleev and GitHub
9b326e0899
Merge pull request #2254 from etkecc/patch-116
...
Update Hydrogen 0.3.3 -> 0.3.4
2022-11-10 21:55:38 +02:00
Slavi Pantaleev and GitHub
e760f163e5
Merge pull request #2251 from etkecc/patch-115
...
Update prometheus 2.40.0 -> 2.40.1
2022-11-09 18:15:10 +02:00
Slavi Pantaleev and GitHub
0816b02365
Merge pull request #2252 from spantaleev/dependabot/github_actions/frenck/action-yamllint-1.3.1
...
Bump frenck/action-yamllint from 1.3.0 to 1.3.1
2022-11-09 18:11:48 +02:00
Slavi Pantaleev and GitHub
fa11d5af2b
Merge pull request #2222 from array-in-a-matrix/master
...
Document login to Discord using token
2022-11-09 09:10:04 +02:00
Slavi Pantaleev
06df2df9e9
Mention playbook ownership issues when running Ansible in a container and potential workarounds
...
Related to https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/2248
2022-11-09 09:01:58 +02:00
Slavi Pantaleev
32e5c814e4
Update containerized Ansible tag and make documentation about "make roles" clearer
...
`devture/ansible:2.13.6-r0` contains the `make` utility.
(https://github.com/devture/docker-ansible/commit/8597fd82720bf3aa1d1f3a6b9ea30ae45120e12f )
Fixes https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/2248
2022-11-09 08:46:49 +02:00
Slavi Pantaleev and GitHub
702df4b5fe
Merge pull request #2246 from etkecc/patch-114
...
Update element v1.11.13 -> v1.11.14
2022-11-08 20:35:33 +02:00
Slavi Pantaleev
51674887ff
Fix Synapse pusher_instances not being populated correctly
...
This caused push notifications to be delivered more than once
if multiple `pusher` workers were enabled.
2022-11-08 17:40:44 +02:00
Slavi Pantaleev and GitHub
59c6d37ebc
Merge pull request #2245 from etkecc/patch-113
...
Update prometheus 2.39.1 -> 2.40.0
2022-11-08 16:54:49 +02:00
Slavi Pantaleev and GitHub
ed1d477ca2
Merge pull request #2244 from etkecc/patch-112
...
Update Grafana 9.2.3 -> 9.2.4
2022-11-08 16:54:33 +02:00
Slavi Pantaleev
7871a92b04
Upgrade Synapse (v1.70.1 -> v1.71.0)
2022-11-08 16:25:52 +02:00
Slavi Pantaleev and GitHub
433adf097b
Merge pull request #2240 from abmantis/patch-1
...
Remove repeated quote in mautrix-discord docs
2022-11-07 08:53:19 +02:00
Slavi Pantaleev and GitHub
a19f239f06
Merge pull request #2237 from etkecc/master
...
remove etherpad nginx config automatically
2022-11-05 21:28:18 +02:00
Slavi Pantaleev and GitHub
844f05dcef
Merge pull request #2235 from drelephant/fixgradle
...
stop gradle pacman error on ubuntu
2022-11-05 15:41:48 +02:00
Slavi Pantaleev and GitHub
5fdcead744
Merge pull request #2233 from etkecc/etherpad-soffice-option
...
etherpad: add abiword and soffice config options, update log level
2022-11-05 14:28:58 +02:00
Slavi Pantaleev
663f0bc5ef
Install openssl using ansible.builtin.package, not using a distro-specific package manager module
...
Related to https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/2228
2022-11-05 12:10:59 +02:00