From 476c39273efcd1de9ac04b7636fec0ee3e69e6c2 Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Thu, 17 Jun 2021 15:32:28 +0300 Subject: [PATCH] Drop CentOS 7 specific task CentOS 7 support has been removed for a while and no reason to carry task that is specific to this version. Change-Id: I6735188f5fc75b44f587e6a810c8e8aad73df684 --- tasks/nova_install.yml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/tasks/nova_install.yml b/tasks/nova_install.yml index c3813b0d..57a5330d 100644 --- a/tasks/nova_install.yml +++ b/tasks/nova_install.yml @@ -78,21 +78,6 @@ value: "{{ nova_venv_tag }}" when: nova_install_method == 'source' -# NOTE(noonedeadpunk): This task can't be done in python_venv_build role -# because installation from file/url can't be used with constraints. -# Here we install packages which are missing in disto, so can't be -# symlinked inside venv. -- name: Install kvm pip packages - pip: - name: "{{ nova_compute_kvm_pip_packages }}" - virtualenv: "{{ nova_bin | dirname }}" - state: present - when: - - nova_install_method == 'source' - - nova_services['nova-compute']['group'] in group_names - - ansible_facts['os_family'] | lower == 'redhat' - - ansible_facts['distribution_major_version']|int <= 7 - - include_tasks: "consoles/nova_console_{{ nova_console_type }}_install.yml" when: - "nova_services['nova-novncproxy']['group'] in group_names or