Skip to content

Commit 294df6f

Browse files
committed
fixed disable repos task
1 parent 59dd169 commit 294df6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ansible/roles/dnf_repos/tasks/disable_repos.yml

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

0 commit comments

Comments
 (0)