mirror of
https://github.com/linux-system-roles/network.git
synced 2026-07-18 17:05:13 +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>
14 lines
508 B
YAML
14 lines
508 B
YAML
---
|
|
# set network provider and gather facts
|
|
- hosts: all
|
|
tasks:
|
|
- include_tasks: tasks/el_repo_setup.yml
|
|
- name: Set network provider to 'initscripts'
|
|
set_fact:
|
|
network_provider: initscripts
|
|
|
|
# workaround for: https://github.com/ansible/ansible/issues/27973
|
|
# There is no way in Ansible to abort a playbook hosts with specific OS
|
|
# releases Therefore we include the playbook with the tests only if the hosts
|
|
# would support it.
|
|
- import_playbook: playbooks/tests_ethtool_features.yml
|