mirror of
https://github.com/geerlingguy/ansible-role-pip.git
synced 2025-02-17 01:11:28 +01:00
Merge pull request #58 from barnabasbusa/master
fix: remove EXERTNALLY-MANAGED on Debian12
This commit is contained in:
commit
160021b3d5
13
.github/workflows/ci.yml
vendored
13
.github/workflows/ci.yml
vendored
@ -19,12 +19,12 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Check out the codebase.
|
- name: Check out the codebase.
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3.5.3
|
||||||
with:
|
with:
|
||||||
path: 'geerlingguy.pip'
|
path: 'geerlingguy.pip'
|
||||||
|
|
||||||
- name: Set up Python 3.
|
- name: Set up Python 3.
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v4.7.0
|
||||||
with:
|
with:
|
||||||
python-version: '3.x'
|
python-version: '3.x'
|
||||||
|
|
||||||
@ -44,17 +44,18 @@ jobs:
|
|||||||
- rockylinux8
|
- rockylinux8
|
||||||
- fedora34
|
- fedora34
|
||||||
- ubuntu2004
|
- ubuntu2004
|
||||||
- ubuntu1804
|
- ubuntu2204
|
||||||
- debian10
|
- debian11
|
||||||
|
- debian12
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Check out the codebase.
|
- name: Check out the codebase.
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3.5.3
|
||||||
with:
|
with:
|
||||||
path: 'geerlingguy.pip'
|
path: 'geerlingguy.pip'
|
||||||
|
|
||||||
- name: Set up Python 3.
|
- name: Set up Python 3.
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v4.7.0
|
||||||
with:
|
with:
|
||||||
python-version: '3.x'
|
python-version: '3.x'
|
||||||
|
|
||||||
|
12
tasks/debian12.yml
Normal file
12
tasks/debian12.yml
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
---
|
||||||
|
# Remove EXTERNALLY-MANAGED file if we're on Debian12
|
||||||
|
# Related issue: https://github.com/geerlingguy/ansible-role-pip/issues/57
|
||||||
|
- name: Get python3 version installed
|
||||||
|
ansible.builtin.command: python3 --version
|
||||||
|
register: py3ver
|
||||||
|
|
||||||
|
- name: Remove EXTERNALLY-MANAGED
|
||||||
|
ansible.builtin.file:
|
||||||
|
path: /usr/lib/python3.11/EXTERNALLY-MANAGED
|
||||||
|
state: absent
|
||||||
|
when: py3ver is defined and py3ver.stdout.find("3.11") != -1
|
@ -1,4 +1,10 @@
|
|||||||
---
|
---
|
||||||
|
- name: Remove externally managed from Debian 12
|
||||||
|
ansible.builtin.import_tasks: debian12.yml
|
||||||
|
when:
|
||||||
|
- ansible_distribution == "Debian"
|
||||||
|
- ansible_distribution_version == "12"
|
||||||
|
|
||||||
- name: Ensure Pip is installed.
|
- name: Ensure Pip is installed.
|
||||||
package:
|
package:
|
||||||
name: "{{ pip_package }}"
|
name: "{{ pip_package }}"
|
||||||
|
Loading…
Reference in New Issue
Block a user