mirror of
https://github.com/linux-system-roles/network.git
synced 2026-01-23 18:35:13 +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>
12 lines
237 B
YAML
12 lines
237 B
YAML
# SPDX-License-Identifier: BSD-3-Clause
|
|
---
|
|
- name: Disable ipv6
|
|
hosts: all
|
|
vars:
|
|
network_connections:
|
|
- name: eth0
|
|
type: ethernet
|
|
ip:
|
|
ipv6_disabled: true
|
|
roles:
|
|
- linux-system-roles.network
|