mirror of
https://github.com/linux-system-roles/network.git
synced 2026-01-23 02:15:17 +00:00
style: ansible-lint - remove line-length files from .yamllint.yml
Rather than having to maintain .yamllint.yml with a list of files exempt from yamllint line-length checking, either fix the code to abide by the line length restriction, or put the yamllint exceptions in-line in the code. Signed-off-by: Rich Megginson <rmeggins@redhat.com>
This commit is contained in:
parent
211412d035
commit
c144794faa
56 changed files with 65 additions and 51 deletions
|
|
@ -4,46 +4,3 @@ extends: default
|
|||
ignore: |
|
||||
/.tox/
|
||||
tests/roles/
|
||||
rules:
|
||||
line-length:
|
||||
ignore: '/tests/tasks/setup_mock_wifi_wpa3_owe.yml
|
||||
|
||||
/tests/tasks/setup_mock_wifi_wpa3_sae.yml
|
||||
|
||||
/tests/tests_ethtool_coalesce_initscripts.yml
|
||||
|
||||
/tests/tests_ethtool_ring_initscripts.yml
|
||||
|
||||
/tests/tests_route_device_initscripts.yml
|
||||
|
||||
/tests/tests_team_plugin_installation_nm.yml
|
||||
|
||||
/tests/tests_wireless_plugin_installation_nm.yml
|
||||
|
||||
/tests/tests_wireless_wpa3_owe_nm.yml
|
||||
|
||||
/tests/tasks/setup_mock_wifi_wpa3_owe.yml
|
||||
|
||||
/tests/tests_auto_gateway_initscripts.yml
|
||||
|
||||
/tests/tests_bond_deprecated_initscripts.yml
|
||||
|
||||
/tests/tests_ethtool_features_initscripts.yml
|
||||
|
||||
/tests/tests_wireless_wpa3_sae_nm.yml
|
||||
|
||||
/tests/tests_eth_pci_address_match_nm.yml
|
||||
|
||||
/tests/playbooks/tests_eth_pci_address_match.yml
|
||||
|
||||
/tests/tasks/setup_802_1x_server.yml
|
||||
|
||||
/tests/tests_bond_removal_initscripts.yml
|
||||
|
||||
/tests/tests_bond_cloned_mac_initscripts.yml
|
||||
|
||||
/tests/tests_bridge_cloned_mac_initscripts.yml
|
||||
|
||||
/tests/tests_bridge_cloned_mac_nm.yml
|
||||
|
||||
'
|
||||
|
|
|
|||
|
|
@ -45,6 +45,7 @@ RUN_PLAYBOOK_WITH_NM = """# SPDX-License-Identifier: BSD-3-Clause
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook '{test_playbook}' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
@ -151,6 +152,7 @@ RUN_PLAYBOOK_WITH_INITSCRIPTS = """# SPDX-License-Identifier: BSD-3-Clause
|
|||
# This file was generated by ensure_provider_tests.py
|
||||
---
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook '{test_playbook}' with initscripts as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -44,11 +44,11 @@
|
|||
- name: pseudo-pci-test-only
|
||||
type: ethernet
|
||||
# When clearing the `match.path` setting through the role, the
|
||||
# `interface_name` has to be defined, otherwise the `interface_name`
|
||||
# will be the profile name. Since it is unclear if a specific
|
||||
# interface exists for the test profile, by setting the
|
||||
# `interface_name` to empty string, the role will accept any interface
|
||||
# for the test profile.
|
||||
# `interface_name` has to be defined, otherwise the
|
||||
# `interface_name` will be the profile name. Since it is
|
||||
# unclear if a specific interface exists for the test profile,
|
||||
# by setting the `interface_name` to empty string, the role will
|
||||
# accept any interface for the test profile.
|
||||
interface_name: ""
|
||||
state: down
|
||||
match:
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
---
|
||||
# This task can be removed once the RHEL-8.5 is not tested anymore
|
||||
- name: Install hostapd via CentOS Stream
|
||||
command: dnf -y install http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/hostapd-2.10-1.el8.x86_64.rpm
|
||||
command: dnf -y install http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/Packages/hostapd-2.10-1.el8.x86_64.rpm # noqa yaml[line-length]
|
||||
when:
|
||||
- ansible_distribution_version | float < 8.6
|
||||
- ansible_distribution_major_version == '8'
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
- wpa_supplicant
|
||||
state: present
|
||||
|
||||
# yamllint disable rule:line-length
|
||||
# Even though hostapd can be installed via EPEL 8, Opportunistic Wireless Encryption
|
||||
# (OWE) has not been enabled by default. To warrant the test support on RHEL(dist-tag),
|
||||
# we setup hostapd copr repo to enable OWE option.
|
||||
|
|
@ -24,6 +25,7 @@
|
|||
- ansible_distribution_major_version == '8'
|
||||
- ansible_distribution == 'CentOS'
|
||||
changed_when: false
|
||||
# yamllint enable rule:line-length
|
||||
|
||||
- name: Install hostapd in Fedora
|
||||
shell: |
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
- wpa_supplicant
|
||||
state: present
|
||||
|
||||
# yamllint disable rule:line-length
|
||||
# Even though hostapd can be installed via EPEL 8, Simultaneous Authentication
|
||||
# of Equals (SAE) has not been enabled by default. To warrant the test support
|
||||
# on CentOS 8, we setup hostapd copr repo to enable SAE option.
|
||||
|
|
@ -24,6 +25,7 @@
|
|||
- ansible_distribution_major_version == '8'
|
||||
- ansible_distribution == 'CentOS'
|
||||
changed_when: false
|
||||
# yamllint enable rule:line-length
|
||||
|
||||
- name: Install hostapd in Fedora
|
||||
package:
|
||||
|
|
@ -33,8 +35,9 @@
|
|||
when:
|
||||
- ansible_distribution == 'Fedora'
|
||||
|
||||
# Since DNF package manager can not warrant installing the kernel module with the same
|
||||
# version as the kernel in target machine, install the kernel module from koji instead
|
||||
# Since DNF package manager can not warrant installing the kernel module with
|
||||
# the same version as the kernel in target machine, install the kernel module
|
||||
# from koji instead
|
||||
- name: Install mac80211_hwsim kernel module in Fedora
|
||||
shell: |
|
||||
dnf -y install koji
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_802_1x.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_802_1x_updated.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
# This file was generated by ensure_provider_tests.py
|
||||
---
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_auto_gateway.yml' with initscripts as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_auto_gateway.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
# This file was generated by ensure_provider_tests.py
|
||||
---
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_bond_cloned_mac.yml' with initscripts as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_bond_cloned_mac.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
# This file was generated by ensure_provider_tests.py
|
||||
---
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_bond_deprecated.yml' with initscripts as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_bond_deprecated.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
# This file was generated by ensure_provider_tests.py
|
||||
---
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_bond.yml' with initscripts as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_bond.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_bond_options.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
# This file was generated by ensure_provider_tests.py
|
||||
---
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_bond_removal.yml' with initscripts as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_bond_removal.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
# This file was generated by ensure_provider_tests.py
|
||||
---
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_bridge_cloned_mac.yml' with initscripts as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_bridge_cloned_mac.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
# This file was generated by ensure_provider_tests.py
|
||||
---
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_bridge.yml' with initscripts as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_bridge.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_dummy.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_eth_dns_support.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_eth_pci_address_match.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
# This file was generated by ensure_provider_tests.py
|
||||
---
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_ethernet.yml' with initscripts as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_ethernet.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
# This file was generated by ensure_provider_tests.py
|
||||
---
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_ethtool_coalesce.yml' with initscripts as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_ethtool_coalesce.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
# This file was generated by ensure_provider_tests.py
|
||||
---
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_ethtool_features.yml' with initscripts as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_ethtool_features.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
# This file was generated by ensure_provider_tests.py
|
||||
---
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_ethtool_ring.yml' with initscripts as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_ethtool_ring.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_infiniband.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_ipv6_disabled.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_ipv6_dns_search.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
# This file was generated by ensure_provider_tests.py
|
||||
---
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_ipv6.yml' with initscripts as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_ipv6.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_network_state.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_provider.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_reapply.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
# This file was generated by ensure_provider_tests.py
|
||||
---
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_route_device.yml' with initscripts as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_route_device.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_route_table.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_routing_rules.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
# This file was generated by ensure_provider_tests.py
|
||||
---
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_states.yml' with initscripts as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_states.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_team.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_team_plugin_installation.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
# This file was generated by ensure_provider_tests.py
|
||||
---
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_vlan_mtu.yml' with initscripts as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_vlan_mtu.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_wireless.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_wireless_plugin_installation.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_wireless_wpa3_owe.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
---
|
||||
# set network provider and gather facts
|
||||
- hosts: all
|
||||
# yamllint disable rule:line-length
|
||||
name: Run playbook 'playbooks/tests_wireless_wpa3_sae.yml' with nm as provider
|
||||
tasks:
|
||||
- name: Include the task 'el_repo_setup.yml'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue