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: Ib7e0d248ca50198ed3d3b5623feafdad26f5df63
This commit is contained in:
Jesse Pretorius 2016-08-30 20:05:14 +01:00
parent 3a920f86d1
commit 2aa35cd95d
7 changed files with 8 additions and 8 deletions

View File

@ -3,4 +3,4 @@
user: root
roles:
- role: "pip_install"
pip_lock_to_internal_repo: True
pip_lock_to_internal_repo: True

View File

@ -41,4 +41,4 @@
tags:
- pip-install-script
- include: install_source.yml
- include: install_source.yml

View File

@ -34,4 +34,4 @@
- include: install.yml
tags:
- pip-install
- pip-install

View File

@ -21,7 +21,7 @@
until: install_packages|success
retries: 5
delay: 2
with_items: "{{ python_packages }}"
with_items: "{{ pip_install_distro_packages }}"
when:
- ansible_pkg_mgr == 'yum'
@ -50,6 +50,6 @@
until: install_packages|success
retries: 5
delay: 2
with_items: "{{ python_packages }}"
with_items: "{{ pip_install_distro_packages }}"
when:
- ansible_pkg_mgr == 'apt'

View File

@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
python_packages:
pip_install_distro_packages:
- gcc
- libffi-devel
- openssl-devel

View File

@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
python_packages:
pip_install_distro_packages:
- build-essential
- python-setuptools
- libffi-dev

View File

@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
python_packages:
pip_install_distro_packages:
- build-essential
- python-dev
- python-setuptools