1
1
mirror of https://gitlab.archlinux.org/archlinux/infrastructure.git synced 2025-01-07 04:24:10 +01:00
infrastructure/roles/valkey/tasks/main.yml
Christian Heusel bce4ff6f69
migrate all services from redis to valkey
We do this since the redis package is soon to be deprecated:
https://lists.archlinux.org/archives/list/arch-dev-public@lists.archlinux.org/thread/2ERGX565GSSBUMADBG7DQJYNPJD5GUXD/

Signed-off-by: Christian Heusel <christian@heusel.eu>
2024-08-19 11:02:31 +02:00

6 lines
141 B
YAML

- name: Install valkey
pacman: name=valkey state=present
- name: Start and enable valkey
service: name=valkey enabled=yes state=started