Fix deprecation warning

Change-Id: Ia0883defad6dc2445eae64812941e16e8e7df854
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2018-12-06 23:19:12 -05:00
parent ee977c5bee
commit eeab595d3f
1 changed files with 2 additions and 2 deletions

View File

@ -17,11 +17,11 @@
statsd_build_depends: "{{ __statsd_build_depends | list }}"
when: statsd_build_depends is not defined
- name: Ensure dependencies are installed
- name: Ensure dependencies are present
become: yes
package:
name: "{{ statsd_build_depends }}"
state: installed
state: present
when: statsd_install_method == 'git'
- include: "install/{{ statsd_install_method }}.yaml"