From e31bec0e04fe9377191de0d165d6b93a8b7bc3e7 Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Wed, 31 Aug 2016 10:23:09 +0100 Subject: [PATCH] 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: I2c0d397df559df1725ec541afd7616e114d49d6f --- .../notes/package-list-name-changes-e6f88d12f3bd9fa0.yaml | 4 ++++ tasks/install-apt.yml | 2 +- vars/debian.yml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 releasenotes/notes/package-list-name-changes-e6f88d12f3bd9fa0.yaml diff --git a/releasenotes/notes/package-list-name-changes-e6f88d12f3bd9fa0.yaml b/releasenotes/notes/package-list-name-changes-e6f88d12f3bd9fa0.yaml new file mode 100644 index 00000000..6e148961 --- /dev/null +++ b/releasenotes/notes/package-list-name-changes-e6f88d12f3bd9fa0.yaml @@ -0,0 +1,4 @@ +--- +upgrade: + - The variable ``swift_apt_packages`` has been renamed to + ``swift_distro_packages``. diff --git a/tasks/install-apt.yml b/tasks/install-apt.yml index bd853d95..bec79ea5 100644 --- a/tasks/install-apt.yml +++ b/tasks/install-apt.yml @@ -34,4 +34,4 @@ until: install_packages|success retries: 5 delay: 2 - with_items: "{{ swift_apt_packages }}" + with_items: "{{ swift_distro_packages }}" diff --git a/vars/debian.yml b/vars/debian.yml index 5ac185f9..46faba49 100644 --- a/vars/debian.yml +++ b/vars/debian.yml @@ -15,7 +15,7 @@ cache_timeout: 600 -swift_apt_packages: +swift_distro_packages: - curl - gcc - git-core