39a846ca6b
This patch adds two new metadata keys to the validation playbooks: - categories: A list of technical tags - products: A list of targeted products (here mainly TripleO) This patch is also part of the Validation Metadata Evolution for the Validations Framework. Signed-off-by: Gael Chamoulaud (Strider) <gchamoul@redhat.com> Change-Id: I80c6b0ffb07b6311f13d7a3b83031317cd0d38de
26 lines
599 B
YAML
26 lines
599 B
YAML
---
|
|
- hosts: undercloud, allovercloud
|
|
gather_facts: true
|
|
vars:
|
|
metadata:
|
|
name: Check correctness of current repositories
|
|
description: |
|
|
Detect whether the repositories listed in `yum repolist`
|
|
can be connected to and that there is at least one repo
|
|
configured.
|
|
|
|
Detect if there are any unwanted repositories (such as EPEL) enabled.
|
|
groups:
|
|
- pre-upgrade
|
|
- pre-update
|
|
categories:
|
|
- os
|
|
- system
|
|
- packaging
|
|
- rpm
|
|
- repository
|
|
products:
|
|
- tripleo
|
|
roles:
|
|
- repos
|