Skip to content

Commit 07dc9b7

Browse files
committed
fixed disable repos task
1 parent 59dd169 commit 07dc9b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
- name: Disable Pulp repos and remove creds
33
ansible.builtin.yum:
4-
disablerepo: "{{ item.name }}"
5-
loop: "{{ dnf_repos_repolist + [epel] }}"
4+
disablerepo: "{{ item }}"
5+
loop: "{{ dnf_repos_repolist | map(attribute='name') + ['epel'] }}"
66
when: dnf_repos_disable

0 commit comments

Comments
 (0)