Rename package install task

The majority of the other roles use "Install distro packages"
as the name for the package installation task. This patch renames the
task in the pip_install role to match.

This will help when we try to profile the CI jobs to see which tasks
are taking the longest time to complete.

Change-Id: I339744e25359b79914ec09259918e61d733f87e7
Signed-off-by: Major Hayden <major@mhtx.net>
This commit is contained in:
Major Hayden 2017-08-07 16:01:23 -05:00
parent 6f37404405
commit 0e3a6faa13
No known key found for this signature in database
GPG Key ID: 737051E0C1011FB1
3 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@
global_environment_variables.https_proxy is defined or
global_environment_variables.HTTPS_PROXY is defined
- name: Install host packages
- name: Install distro packages
apt:
pkg: "{{ openstack_host_distro_packages }}"
state: "{{ openstack_hosts_package_state }}"

View File

@ -74,7 +74,7 @@
name: "{{ openstack_host_distro_packages_remove | default([]) }}"
state: absent
- name: Install host packages
- name: Install distro packages
package:
pkg: "{{ openstack_host_distro_packages }}"
state: "{{ openstack_hosts_package_state }}"

View File

@ -18,7 +18,7 @@
name: "{{ openstack_host_distro_packages_remove | default([]) }}"
state: absent
- name: Install host packages
- name: Install distro packages
zypper:
name: "{{ openstack_host_distro_packages }}"
state: "{{ openstack_hosts_package_state }}"