From 3502645d5a8f8aeb3ebe1275f467ecb4aee9edd5 Mon Sep 17 00:00:00 2001 From: Jonathan Rosser Date: Wed, 10 May 2023 14:19:56 +0100 Subject: [PATCH] Remove conditional code for ubuntu version earlier than 20.x This has not been supported for a while in openstack-ansible so tidy up the old code. Change-Id: If3e0d8205a33b00a07bea530d9d7317e83f5b0d6 --- vars/debian.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vars/debian.yml b/vars/debian.yml index 143d892..57c1b74 100644 --- a/vars/debian.yml +++ b/vars/debian.yml @@ -34,9 +34,8 @@ ceph_revoked_gpg_keys: ceph_apt_repo_url_region: "download" # or "eu" for Netherlands based mirror ceph_apt_repo_url: "http://{{ ceph_apt_repo_url_region }}.ceph.com/debian-{{ ceph_stable_release }}" -# LibVirt differentials between Debian and Ubuntu libvirt_packages: - - "{{ (ansible_facts['distribution'] == 'Ubuntu' and ansible_facts['distribution_major_version'] is version('20', '<')) | ternary('libvirt-bin', 'libvirt-daemon-system') }}" + - libvirt-daemon-system libvirt_service_name: libvirtd