add redis role for ensuring redis is installed from distro packages

This is a requirement for a new netbox role.
This commit is contained in:
June 2025-02-13 02:00:32 +01:00
commit fc24bfff5d
Signed by: june
SSH key fingerprint: SHA256:o9EAq4Y9N9K0pBQeBTqhSDrND5E7oB+60ZNx0U1yPe0
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,5 @@
- name: Ensure redis is installed
ansible.builtin.apt:
name:
- redis
become: true