mirror of
https://github.com/linux-system-roles/network.git
synced 2026-01-23 02:15:17 +00:00
The only thing we need to skip currently is using FQCN for ansible builtin modules, plugins Add `kinds` - otherwise, Ansible thinks anything not in a traditional role path is a plain YAML file, and we don't get the additional checking. Ensure all plays are named. Fix some other minor problems. Signed-off-by: Rich Megginson <rmeggins@redhat.com>
22 lines
551 B
YAML
22 lines
551 B
YAML
# SPDX-License-Identifier: BSD-3-Clause
|
|
---
|
|
- name: Manage ethtool ring
|
|
hosts: all
|
|
tasks:
|
|
- name: Configure ring parameters
|
|
include_role:
|
|
name: linux-system-roles.network
|
|
vars:
|
|
network_connections:
|
|
- name: "{{ network_interface_name1 }}"
|
|
state: up
|
|
type: ethernet
|
|
ip:
|
|
dhcp4: false
|
|
auto6: false
|
|
ethtool:
|
|
ring:
|
|
rx: 128
|
|
rx_jumbo: 128
|
|
rx_mini: 128
|
|
tx: 128
|