Skip to content

Commit 77c83fd

Browse files
committed
fix(conf): remove embedded template in redis role
Replace embedded template by simple variable reference in redis role.
1 parent db97225 commit 77c83fd

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ and this project adheres to
2626
- conf:
2727
- Slurm-web v5 JWT for slurmrestd authentification ownership.
2828
- Run Slurm-web agent as slurm special user when authentication is local.
29+
- Replace embedded template by simple variable reference in redis role.
2930

3031
## [1.2.0] - 2025-09-18
3132

conf/roles/redis/defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
redis_packages:
33
- redis-server
44
redis_local_password_file: redis.password # dummy
5-
redis_password: "{{ lookup('file', '{{ redis_local_password_file }}', errors='ignore') }}"
5+
redis_password: "{{ lookup('file', redis_local_password_file, errors='ignore') }}"

0 commit comments

Comments
 (0)