Use openssh transport
This commit is contained in:
parent
a5f1b2a632
commit
8420c052fa
@ -1,4 +1,4 @@
|
||||
# recipients: sssd-team, ftrivino
|
||||
# recipients: sssd-qe, ftrivino
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-9
|
||||
|
@ -27,7 +27,7 @@
|
||||
|
||||
Name: sssd
|
||||
Version: 2.4.2
|
||||
Release: 5%{?dist}
|
||||
Release: 6%{?dist}
|
||||
Summary: System Security Services Daemon
|
||||
License: GPLv3+
|
||||
URL: https://github.com/SSSD/sssd/
|
||||
@ -1015,9 +1015,6 @@ fi
|
||||
%systemd_postun_with_restart sssd.service
|
||||
|
||||
%changelog
|
||||
* Tue Jun 01 2021 Steeve Goveas <sgoveas@redhat.com> - 2.4.2-5
|
||||
- Rebuilt for RHEL 9 BETA to add gating tests (rhbz#1954686)
|
||||
|
||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.4.2-4
|
||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
---
|
||||
- name: Set ansible_python_interpreter to /usr/libexec/platform-python
|
||||
set_fact:
|
||||
ansible_python_interpreter: '/usr/libexec/platform-python'
|
||||
ansible_python_interpreter: auto
|
||||
|
||||
- name: Define remote_artificats
|
||||
set_fact:
|
||||
@ -14,6 +14,9 @@
|
||||
- rsync
|
||||
when: ansible_pkg_mgr != 'unknown'
|
||||
|
||||
- name: Install sshpass from epel
|
||||
shell: yum --enablerepo epel install sshpass -y
|
||||
|
||||
- name: Install required packages
|
||||
dnf:
|
||||
name: >
|
||||
@ -56,19 +59,11 @@
|
||||
|
||||
- name: Install pytest-multihost and other test dependencies
|
||||
pip:
|
||||
name: "{{ item }}"
|
||||
name: >
|
||||
setuptools, pytz, paramiko, pep8, pylint,
|
||||
pytest-multihost, python-ldap, pytest, pyyaml
|
||||
virtualenv: "{{ venv_dir }}"
|
||||
virtualenv_command: /usr/bin/virtualenv
|
||||
with_items:
|
||||
- setuptools
|
||||
- pytz
|
||||
- paramiko
|
||||
- pep8
|
||||
- pylint
|
||||
- pytest-multihost
|
||||
- python-ldap
|
||||
- pytest
|
||||
- pyyaml
|
||||
|
||||
- name: Find directory python searches for path
|
||||
shell: python3 -m site --user-site
|
||||
@ -94,6 +89,7 @@
|
||||
block:
|
||||
- name: Execute pytest
|
||||
shell: |
|
||||
PYTESTMULTIHOST_SSH_TRANSPORT=openssh \
|
||||
"{{ venv_dir }}/bin/pytest" -v \
|
||||
--junit-xml="{{ remote_artifacts }}/junit.xml" \
|
||||
--multihost-config=/tmp/mhc.yaml \
|
||||
|
Loading…
Reference in New Issue
Block a user