From 5929076e982147a1231ff243baf964975ee05600 Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Thu, 8 Aug 2019 09:42:23 -0400 Subject: [PATCH] Fix deprecation warning Depends-On: https://review.opendev.org/702969 Change-Id: I501ac43f643e47603885dc006049e2b7e0381866 Signed-off-by: Paul Belanger --- tasks/install.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/install.yaml b/tasks/install.yaml index f50c5a6..952be46 100644 --- a/tasks/install.yaml +++ b/tasks/install.yaml @@ -17,11 +17,11 @@ nodepool_build_depends: "{{ __nodepool_build_depends | list }}" when: nodepool_build_depends is not defined -- name: Ensure build dependencies are installed +- name: Ensure build dependencies are present become: true package: name: "{{ nodepool_build_depends }}" - state: installed + state: present when: nodepool_install_method == 'git' - name: Define nodepool_pip_executable if needed