diff options
author | Emil Renner Berthing <esmil@labitat.dk> | 2020-02-27 19:25:04 +0100 |
---|---|---|
committer | Emil Renner Berthing <esmil@labitat.dk> | 2020-02-27 19:25:04 +0100 |
commit | 778dad6107eb20223ae900f93329916b14fa676a (patch) | |
tree | 1ecae335a6c4688aab6bc2202d293554e306fc88 /roles/debian | |
parent | e89549e78168242c01fca37973a850b5050024c0 (diff) | |
download | labitat-ansible-778dad6107eb20223ae900f93329916b14fa676a.tar.gz labitat-ansible-778dad6107eb20223ae900f93329916b14fa676a.tar.xz labitat-ansible-778dad6107eb20223ae900f93329916b14fa676a.zip |
debian: apt: show nicer loop items
Diffstat (limited to 'roles/debian')
-rw-r--r-- | roles/debian/tasks/apt.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/roles/debian/tasks/apt.yml b/roles/debian/tasks/apt.yml index 82bbedd..3384fb6 100644 --- a/roles/debian/tasks/apt.yml +++ b/roles/debian/tasks/apt.yml @@ -68,6 +68,8 @@ id: "{{ apt_repos[item.key]['key_id'] }}" state: present with_dict: '{{ apt_sources }}' + loop_control: + label: '{{ item.key }}' when: "'key_url' in apt_repos[item.key]" - name: Update apt cache |