mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-30 00:21:23 -07:00
Some checks are pending
EOL CI / EOL Sanity (Ⓐ2.13) (push) Waiting to run
EOL CI / EOL Sanity (Ⓐ2.14) (push) Waiting to run
EOL CI / EOL Sanity (Ⓐ2.15) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.13+py2.7) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.13+py3.8) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.14+py3.9) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.15+py3.10) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.15+py3.5) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.13+alpine3+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.13+alpine3+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.13+alpine3+py:azp/posix/3/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.13+fedora35+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.13+fedora35+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.13+fedora35+py:azp/posix/3/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.13+opensuse15py2+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.13+opensuse15py2+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.13+opensuse15py2+py:azp/posix/3/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.14+alpine3+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.14+alpine3+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.14+alpine3+py:azp/posix/3/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/3/) (push) Waiting to run
nox / Run extra sanity tests (push) Waiting to run
* Remove blanket skips for Python 3 in CI (#10043)
* Remove blanket skips for Python 3 in CI.
* Try to fix hg tests.
* Disable hg tests.
* Drop restriction of supervisor to <4.0.0.
This was introduced in https://github.com/ansible/ansible/pull/54935.
* Make tests work with supervisorctl 4.0.0.
According to https://supervisord.org/changes.html#id12,
"supervisorctl will now set its exit code to a non-zero value when an error condition occurs."
I'm not sure why a stopped service in 'status' constitutes an error condition,
but whatever 🤷...
* Use correct Python executable.
* Skip RHEL/macOS; diff on config write.
* Skip CentOS 7 and OpenSuSE on ansible-core 2.16.
(cherry picked from commit 2a5abab738
)
* Skip OpenSuSE 15/Python 2 on ansible-core 2.13.
---------
Co-authored-by: Felix Fontein <felix@fontein.de>
65 lines
2.2 KiB
YAML
65 lines
2.2 KiB
YAML
---
|
|
# Copyright (c) Ansible Project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
- name: restore the updated python
|
|
command: mv "{{ which_python.stdout }}.updated" "{{ which_python.stdout }}"
|
|
|
|
- name: restore the updated pip
|
|
command: mv "{{ which_pip.stdout }}.updated" "{{ which_pip.stdout }}"
|
|
|
|
- name: restore the mercurial python interpreter symlink (if needed)
|
|
lineinfile:
|
|
path: "{{ which_hg.stdout }}"
|
|
regexp: "^#!.*$"
|
|
line: "#!{{ stat_hg_interpreter.stat.path }}"
|
|
when: stat_hg_interpreter.stat.islnk
|
|
|
|
- name: uninstall packages which were not originally installed (apk)
|
|
package:
|
|
name: mercurial
|
|
state: absent
|
|
when: ansible_facts.pkg_mgr in ['apk', 'community.general.apk']
|
|
|
|
# using the apt module prevents autoremove from working, so call apt-get via shell instead
|
|
- name: uninstall packages which were not originally installed (apt)
|
|
shell: apt-get -y remove mercurial && apt-get -y autoremove
|
|
when: ansible_facts.pkg_mgr == 'apt'
|
|
|
|
- name: uninstall packages which were not originally installed (dnf)
|
|
dnf:
|
|
name: mercurial
|
|
state: absent
|
|
autoremove: true
|
|
when: ansible_facts.pkg_mgr == 'dnf'
|
|
|
|
# the yum module does not have an autoremove parameter
|
|
- name: uninstall packages which were not originally installed (yum)
|
|
shell: yum -y autoremove mercurial
|
|
when: ansible_facts.pkg_mgr == 'yum'
|
|
|
|
- name: uninstall packages which were not originally installed (pacman)
|
|
package:
|
|
name: mercurial
|
|
state: absent
|
|
when: ansible_facts.pkg_mgr in ['pacman', 'community.general.pacman']
|
|
|
|
- name: uninstall packages which were not originally installed (pkgng)
|
|
package:
|
|
name: mercurial
|
|
state: absent
|
|
autoremove: true
|
|
when: ansible_facts.pkg_mgr in ['pkgng', 'community.general.pkgng']
|
|
|
|
- name: uninstall packages which were not originally installed (zypper)
|
|
package:
|
|
name: mercurial
|
|
state: absent
|
|
when: ansible_facts.pkg_mgr in ['zypper', 'community.general.zypper']
|
|
|
|
- name: restore the default python
|
|
raw: mv "{{ which_python.stdout }}.default" "{{ which_python.stdout }}"
|
|
|
|
- name: restore the default pip
|
|
raw: mv "{{ which_pip.stdout }}.default" "{{ which_pip.stdout }}"
|