From 6b0a056c5e1eb8950721b4ca853d181f1cbea879 Mon Sep 17 00:00:00 2001 From: Markus Katharina Brechtel Date: Sat, 11 Jan 2020 03:46:37 +0000 Subject: [PATCH] new apt format --- tasks/main.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index 8c48112..71ca216 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -16,10 +16,9 @@ - name: install multiarch libraries apt: - pkg: "{{ item }}" - with_items: - - lib32stdc++6 - - lib32z1 - - lib32gcc1 - - libc6:i386 + pkg: + - lib32stdc++6 + - lib32z1 + - lib32gcc1 + - libc6:i386 when: ansible_architecture == "x86_64"