Changeset - 922ac53a02a7
[Not reviewed]
0 4 0
Branko Majic (branko) - 2 months ago 2024-02-25 21:27:36
branko@majic.rs
MAR-192: Drop the Python 2.7-specific packages from installation:

- These are leftovers from previous work for dropping the Python 2.7
support.
4 files changed with 0 insertions and 4 deletions:
0 comments (0 inline, 0 general)
roles/common/molecule/default/tests/test_default.py
Show inline comments
 
@@ -119,7 +119,6 @@ def test_installed_packages(host):
 
    assert host.package('ssl-cert').is_installed
 
    assert host.package('ferm').is_installed
 
    assert host.package('apticron').is_installed
 
    assert host.package('python-setuptools').is_installed
 
    assert host.package('python3-setuptools').is_installed
 
    assert host.package('virtualenv').is_installed
 

	
roles/common/tasks/main.yml
Show inline comments
 
@@ -323,7 +323,6 @@
 
- name: Install packages required for running pip requirements checks
 
  apt:
 
    name:
 
      - python-setuptools
 
      - python3-setuptools
 
      - virtualenv
 
    state: present
roles/web_server/molecule/default/tests/test_default.py
Show inline comments
 
@@ -12,7 +12,6 @@ def test_installed_packages(host, php_info):
 
    """
 

	
 
    assert host.package('nginx').is_installed
 
    assert host.package('python-setuptools').is_installed
 
    assert host.package('python3-setuptools').is_installed
 
    assert host.package('virtualenv').is_installed
 
    assert host.package('virtualenvwrapper').is_installed
roles/web_server/tasks/main.yml
Show inline comments
 
@@ -140,7 +140,6 @@
 
- name: Install base packages for Python web applications
 
  apt:
 
    name:
 
      - python-setuptools
 
      - python3-setuptools
 
      - virtualenv
 
      - virtualenvwrapper
0 comments (0 inline, 0 general)