Compare commits

...

1 commit

Author SHA1 Message Date
66d6e54cf1
add redis role for ensuring redis is installed from distro packages
All checks were successful
/ Ansible Lint (push) Successful in 1m43s
/ Ansible Lint (pull_request) Successful in 1m40s
This is a requirement for a new netbox role.
2025-02-13 02:00:32 +01:00
2 changed files with 20 additions and 0 deletions

15
roles/redis/README.md Normal file
View file

@ -0,0 +1,15 @@
# Role `redis`
Ensures `redis` is installed by installing the distributions package.
## Supported Distributions
Should work on Debian-based distributions.
## Required Arguments
None.
## Optional Arguments
None.

View file

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