mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2026-05-01 18:00:54 +03:00
0ed585baa7
#1192 lead to the following error for me on Archlinux: `TASK [matrix-base : Install host dependencies] ******************************************************************************************************************************* fatal: [matrix.***.de]: FAILED! => changed=false msg: |- failed to install systemd-timesyncd: error: target not found: systemd-timesyncd` There is no package called `systemd-timesyncd` on Archlinux. The service is installed with the [`systemd`](https://archlinux.org/packages/core/x86_64/systemd/) package itself. I suggest removing the `systemd-timesyncd` from https://github.com/sakkiii/matrix-docker-ansible-deploy/blob/2453876eb9a463eb6e327a9f771ea2a29b9cdc49/roles/matrix-base/tasks/server_base/setup_archlinux.yml#L7
19 lines
363 B
YAML
19 lines
363 B
YAML
---
|
|
|
|
- name: Install host dependencies
|
|
pacman:
|
|
name:
|
|
- python-docker
|
|
# TODO This needs to be verified. Which version do we need?
|
|
- fuse3
|
|
- python-dnspython
|
|
state: latest
|
|
update_cache: yes
|
|
|
|
- name: Ensure Docker is installed
|
|
pacman:
|
|
name:
|
|
- docker
|
|
state: latest
|
|
when: matrix_docker_installation_enabled|bool
|