From 2a2b9024d143d31e4c1677eb12894ee0d3d900e5 Mon Sep 17 00:00:00 2001 From: Eduardo Gonzalez Date: Mon, 26 Jun 2017 15:25:34 +0100 Subject: [PATCH] Add rally package to rally ubuntu binary Rally package was removed by mistake in a previous change. This change adds rally again to the install list. python-rally should be a dependency of rally package. Change-Id: I85028e049b5b4175c38a544e27f0d781a8f83600 --- docker/rally/Dockerfile.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/rally/Dockerfile.j2 b/docker/rally/Dockerfile.j2 index eb08ae55a5..cbe7915459 100644 --- a/docker/rally/Dockerfile.j2 +++ b/docker/rally/Dockerfile.j2 @@ -16,8 +16,8 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build ] %} {% elif base_distro in ['debian', 'ubuntu'] %} {% set rally_packages = [ - 'python-rally', - 'python-os-testr' + 'python-os-testr', + 'rally' ] %} {% endif %} {{ macros.install_packages(rally_packages | customizable("packages")) }}