mirror of
https://github.com/linux-system-roles/network.git
synced 2026-01-23 10:25:28 +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>
18 lines
463 B
YAML
18 lines
463 B
YAML
# SPDX-License-Identifier: BSD-3-Clause
|
|
---
|
|
- name: Manage autoconnect
|
|
hosts: network-test
|
|
vars:
|
|
network_connections:
|
|
# Create one ethernet profile and activate it.
|
|
# The profile uses automatic IP addressing
|
|
# and is tied to the interface by MAC address.
|
|
- name: prod1
|
|
state: up
|
|
type: ethernet
|
|
autoconnect: true
|
|
mac: "{{ network_mac1 }}"
|
|
mtu: 1450
|
|
|
|
roles:
|
|
- linux-system-roles.network
|