Fix deprecation warning

Change-Id: I6d3f5f977232795154062955cc97fbc5d7913848
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2018-12-10 18:31:59 -05:00
parent 3ece8f7a25
commit 28286f7f63
1 changed files with 2 additions and 2 deletions

View File

@ -17,11 +17,11 @@
openstacksdk_build_depends: "{{ __openstacksdk_build_depends | list }}"
when: openstacksdk_build_depends is not defined
- name: Ensure build dependencies are installed.
- name: Ensure build dependencies are present.
become: yes
package:
name: "{{ openstacksdk_build_depends }}"
state: installed
state: present
when: openstacksdk_install_method == 'git' or openstacksdk_install_method == 'pip'
- name: Define openstacksdk_pip_executable if needed.