We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47d5d02 commit 8da1869Copy full SHA for 8da1869
ansible/roles/apt/tasks/main.yml
@@ -67,7 +67,7 @@
67
68
loop_control:
69
label: "{{ item.key }}"
70
-
+
71
- name: Add 3rd-party repositories (2/2)
72
notify: apt update
73
with_dict: "{{ apt.repositories }}"
@@ -82,12 +82,15 @@
82
83
- # Required to re-run `apt update` before installing the latest Ansible version
84
meta: flush_handlers
85
86
- name: Install latest ansible
87
apt:
88
name: ansible
89
state: latest
90
91
+- debug:
92
+ msg: "{{ apt.packages.values() | flatten | list }}"
93
94
- name: Install extra packages
95
96
name: "{{ apt.packages | flatten | map(attribute='name') | list }}"
0 commit comments