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: Ib607e78bd3be2f50fbfe2c7098706df7e91cd780
This commit is contained in:
Jesse Pretorius 2016-08-30 20:02:12 +01:00
parent 2345943971
commit 833d62c9fe
8 changed files with 8 additions and 8 deletions

View File

@ -38,7 +38,7 @@
until: install_apt_packages | success until: install_apt_packages | success
retries: 5 retries: 5
delay: 2 delay: 2
with_items: "{{ zaqar_apt_packages }}" with_items: "{{ zaqar_distro_packages }}"
when: when:
- item != '' - item != ''
tags: tags:

View File

@ -24,4 +24,4 @@ container_networks:
type: "veth" type: "veth"
physical_host: localhost physical_host: localhost
properties: properties:
service_name: "{{ inventory_hostname }}" service_name: "{{ inventory_hostname }}"

View File

@ -29,4 +29,4 @@
galera_wsrep_node_name: "{{ inventory_hostname }}" galera_wsrep_node_name: "{{ inventory_hostname }}"
galera_wsrep_provider_options: galera_wsrep_provider_options:
- { option: "gcache.size", value: "32M" } - { option: "gcache.size", value: "32M" }
galera_server_id: "{{ inventory_hostname | string_2_int }}" galera_server_id: "{{ inventory_hostname | string_2_int }}"

View File

@ -78,4 +78,4 @@
keystone_rabbitmq_vhost: /keystone keystone_rabbitmq_vhost: /keystone
keystone_rabbitmq_servers: 10.100.100.2 keystone_rabbitmq_servers: 10.100.100.2
keystone_rabbitmq_use_ssl: false keystone_rabbitmq_use_ssl: false
galera_client_drop_config_file: false galera_client_drop_config_file: false

View File

@ -30,4 +30,4 @@
port: "{{ ansible_ssh_port | default('22') }}" port: "{{ ansible_ssh_port | default('22') }}"
host: "{{ ansible_ssh_host | default(inventory_hostname) }}" host: "{{ ansible_ssh_host | default(inventory_hostname) }}"
search_regex: OpenSSH search_regex: OpenSSH
delay: 1 delay: 1

View File

@ -27,4 +27,4 @@
command: cat ~/.ssh/id_rsa.pub command: cat ~/.ssh/id_rsa.pub
register: key_get register: key_get
- set_fact: - set_fact:
lxc_container_ssh_key: "{{ key_get.stdout }}" lxc_container_ssh_key: "{{ key_get.stdout }}"

View File

@ -32,4 +32,4 @@
- include: test-install-zaqar.yml - include: test-install-zaqar.yml
# Test Zaqar # Test Zaqar
- include: test-zaqar-functional.yml - include: test-zaqar-functional.yml

View File

@ -15,7 +15,7 @@
## APT Cache options ## APT Cache options
cache_timeout: 600 cache_timeout: 600
zaqar_apt_packages: zaqar_distro_packages:
- gcc - gcc
- libxml2-dev - libxml2-dev
- libxslt1-dev - libxslt1-dev