Rename package lists (and related vars) appropriately

In order to make it easier to differentiate between the lists of
python packages, distribution packages, downloaded packages,
package pins and other similar variables the variable names are
being changed to ensure that they have a more explicit suffix
that defines the purpose and makes the naming more consistent.

This is to facilitate a lookup plugin which will be able to look
up all the package lists and present them as a consolidated piece
of data which may be used for artifact preparation.

Change-Id: Ic824dddafbcba73e3bccfd05da83485b94a9520d
This commit is contained in:
Jesse Pretorius 2016-08-30 19:02:37 +01:00
parent a7ff989c40
commit 2cf15a702f
2 changed files with 4 additions and 4 deletions

View File

@ -30,8 +30,8 @@
apt:
pkg: "{{ item }}"
state: "{{ magnum_package_state }}"
register: install_magnum_apt_packages
until: install_magnum_apt_packages |success
register: install_magnum_distro_packages
until: install_magnum_distro_packages |success
retries: 5
delay: 2
with_items: "{{ magnum_apt_packages }}"
with_items: "{{ magnum_distro_packages }}"

View File

@ -17,7 +17,7 @@
cache_timeout: 600
# Common apt packages
magnum_apt_packages:
magnum_distro_packages:
- python-dev
- libssl-dev
- libxml2-dev