From c43fc6c9c8aeba25de25131a30e7c1cac617cce1 Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Wed, 5 Oct 2022 11:06:04 +0200 Subject: [PATCH] Replace git-core with git for debian With ansible-core 2.13 it tries to substitude package resolution in apt module. However git-core is used in Debian as transitional name, but ansible tries to select it and provide version, which is not correct behaviour. But since git-core is not really valid anyway, we just replace it to workaround ansible's imperfectness. Change-Id: I862e1ea4cef840d1903962181bfc8ec3c5a1e903 --- vars/debian.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vars/debian.yml b/vars/debian.yml index 2fdbaadb..58072f24 100644 --- a/vars/debian.yml +++ b/vars/debian.yml @@ -19,7 +19,7 @@ cache_timeout: 600 _stestr_executable: "{{ (tempest_install_method == 'distro') | ternary('testr', 'stestr') }}" tempest_distro_packages: - - git-core + - git - libxslt1.1 # required by the python module unittest2 - build-essential # required to build tempest plugins (TODO) remove this when repo server can satisfy the tempest plugin requirements - nmap # provides ncat tool which is required by some of the neutron-tempest-plugin scenario tests