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: Ib4b177992753ad53b8bdb7a7652f1fbc6cc5267d
This commit is contained in:
Jesse Pretorius 2016-08-30 18:04:39 +01:00
parent b85848bf54
commit 0b6085c007
4 changed files with 7 additions and 3 deletions

View File

@ -16,4 +16,4 @@
- name: Restart apache2
service:
name: "apache2"
state: "restarted"
state: "restarted"

View File

@ -0,0 +1,4 @@
---
upgrade:
- The variable ``horizon_apt_packages`` has been renamed to
``horizon_distro_packages``.

View File

@ -34,4 +34,4 @@
until: install_packages|success
retries: 5
delay: 2
with_items: "{{ horizon_apt_packages }}"
with_items: "{{ horizon_distro_packages }}"

View File

@ -16,7 +16,7 @@
## APT Cache options
cache_timeout: 600
horizon_apt_packages:
horizon_distro_packages:
- apache2
- apache2-utils
- cron # required by the Ansible cron module