58 lines
1.5 KiB
YAML
58 lines
1.5 KiB
YAML
---
|
|
- hosts: localhost
|
|
tags: classic
|
|
tasks:
|
|
- name: Add epel repo
|
|
yum_repository:
|
|
name: epel8
|
|
file: epel8
|
|
description: EPEL Repo of RHEL 8
|
|
baseurl: https://download.fedoraproject.org/pub/epel/8/Everything/x86_64/
|
|
enabled: yes
|
|
gpgcheck: no
|
|
- name: Add buildroot repo
|
|
yum_repository:
|
|
name: buildroot8
|
|
file: buildroot8
|
|
description: buildroot
|
|
baseurl: http://download.devel.redhat.com/rhel-8/nightly/BUILDROOT-8/latest-BUILDROOT-8.7-RHEL-8/compose/Buildroot/x86_64/os/
|
|
enabled: yes
|
|
gpgcheck: no
|
|
- name: Add CRB repo
|
|
yum_repository:
|
|
name: crb8
|
|
file: crb8
|
|
description: crb
|
|
baseurl: http://download.eng.brq.redhat.com/rhel-8/nightly/RHEL-8/latest-RHEL-8.7/compose/CRB/x86_64/os/
|
|
enabled: yes
|
|
gpgcheck: no
|
|
- name: Life is short
|
|
shell: dnf -y builddep mod_auth_gssapi
|
|
args:
|
|
warn: false
|
|
|
|
- hosts: localhost
|
|
roles:
|
|
- role: standard-test-source
|
|
tags:
|
|
- always
|
|
- role: standard-test-basic
|
|
tags:
|
|
- atomic
|
|
- classic
|
|
required_packages:
|
|
- gcc
|
|
- libfaketime
|
|
- krb5-devel
|
|
- krb5-pkinit
|
|
- krb5-server
|
|
- krb5-workstation
|
|
- mod_auth_gssapi # wut
|
|
- mod_session
|
|
- nss_wrapper
|
|
- python3-requests-gssapi
|
|
- python3-virtualenv
|
|
- socket_wrapper
|
|
tests:
|
|
- driver
|