Skip to content

Commit

Permalink
TMP
Browse files Browse the repository at this point in the history
  • Loading branch information
eifelmicha committed Oct 8, 2024
1 parent 872c8a8 commit 7cb2324
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
owner: root
group: root
when: item.credentials is defined
with_items: "{{ _ops_tools.apt_repos | default([]) }}"
with_items: "{{ _ops_tools.credentials | default([]) }}"
register: new_credentials

- name: Download APT keys
Expand Down Expand Up @@ -57,8 +57,8 @@
suites: "{{ item.suites }}"
components: "{{ item.components }}"
signed_by: "{{ item.signed_by }}"
when: item.deb822_repository is defined
with_items: "{{ _ops_tools.apt_repos | default([]) }}"
when: item.name is defined
with_items: "{{ _ops_tools.deb822_repository | default([]) }}"
register: new_deb822

- name: Update APT Cache # noqa: no-handler
Expand Down

0 comments on commit 7cb2324

Please sign in to comment.