We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db97225 commit 77c83fdCopy full SHA for 77c83fd
CHANGELOG.md
@@ -26,6 +26,7 @@ and this project adheres to
26
- conf:
27
- Slurm-web v5 JWT for slurmrestd authentification ownership.
28
- Run Slurm-web agent as slurm special user when authentication is local.
29
+ - Replace embedded template by simple variable reference in redis role.
30
31
## [1.2.0] - 2025-09-18
32
conf/roles/redis/defaults/main.yml
@@ -2,4 +2,4 @@
2
redis_packages:
3
- redis-server
4
redis_local_password_file: redis.password # dummy
5
-redis_password: "{{ lookup('file', '{{ redis_local_password_file }}', errors='ignore') }}"
+redis_password: "{{ lookup('file', redis_local_password_file, errors='ignore') }}"
0 commit comments