mirror of
https://github.com/linux-system-roles/network.git
synced 2026-07-20 17:59:00 +00:00
* As EPEL6 has been moved to archive, created `tests/tasks/enable_epel.yml`. * As CentOS6 has been moved to vault, created `tests/tests_00_setup.yml`. Signed-off-by: Gris Ge <fge@redhat.com>
22 lines
645 B
YAML
22 lines
645 B
YAML
# SPDX-License-Identifier: BSD-3-Clause
|
|
# This file was generated by ensure_provider_tests.py
|
|
---
|
|
# set network provider and gather facts
|
|
- hosts: all
|
|
name: Run playbook 'playbooks/tests_wireless.yml' with nm as provider
|
|
tasks:
|
|
- include_tasks: tasks/el_repo_setup.yml
|
|
|
|
- name: Set network provider to 'nm'
|
|
set_fact:
|
|
network_provider: nm
|
|
tags:
|
|
- always
|
|
|
|
|
|
# The test requires or should run with NetworkManager, therefore it cannot run
|
|
# on RHEL/CentOS 6
|
|
- import_playbook: playbooks/tests_wireless.yml
|
|
when:
|
|
- ansible_distribution_major_version != '6'
|
|
- ansible_distribution_major_version == '7'
|