From d144bb101730f755884763efa3e08e8ef9ef36dd Mon Sep 17 00:00:00 2001 From: "Glenn K. Lockwood" Date: Sat, 27 Jun 2020 14:32:53 -0700 Subject: [PATCH] fix deprecated behavior(?) --- roles/common/tasks/darshan-dev.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/roles/common/tasks/darshan-dev.yml b/roles/common/tasks/darshan-dev.yml index edd0db0..7819d63 100644 --- a/roles/common/tasks/darshan-dev.yml +++ b/roles/common/tasks/darshan-dev.yml @@ -1,12 +1,11 @@ --- - name: install prerequisite software for Darshan development apt: - name="{{ item }}" - state=present - update_cache=yes - with_items: - - mpich - - zlib1g-dev - - autoconf + name: + - mpich + - zlib1g-dev + - autoconf + state: present + update_cache: yes tags: - sw