mirror of https://github.com/ansible/ansible.git
modules/dnf: Substitute variables in DNF cache path (#80094)
The cache directory can be specified with variables that are expanded by DNF, for example, ``` cachedir=/var/cache/yum/$basearch/$releasever ``` But the `dnf` module would use that path literally, instead of replacing `$basearch` and `$releasever` with their values. This commit ensures that variables in `cachedir` are properly substituted. Signed-off-by: Benoît Knecht <bknecht@protonmail.ch>pull/83011/head
parent
46137127a2
commit
d304fd86c2
@ -0,0 +1,3 @@
|
||||
---
|
||||
bugfixes:
|
||||
- dnf - Substitute variables in DNF cache path (https://github.com/ansible/ansible/pull/80094).
|
Loading…
Reference in New Issue