fix: first jinja templates

This commit is contained in:
2024-03-30 19:11:14 +01:00
parent ffcc9201ac
commit 153732e83b
4 changed files with 2391 additions and 0 deletions

View File

@ -1,2 +1,11 @@
---
# tasks file for redis
- name: "Create redis config"
template:
src: etc/redis/redis.conf.j2
dest: /etc/redis/redis.conf
owner: "root"
group: "root"
mode: "0600" # config can contain secrets
notify: Restart redis