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>
29 lines
607 B
YAML
29 lines
607 B
YAML
# SPDX-License-Identifier: BSD-3-Clause
|
|
---
|
|
- name: Manage network MAC VLAN
|
|
hosts: network-test
|
|
vars:
|
|
network_connections:
|
|
- name: eth0
|
|
type: ethernet
|
|
state: up
|
|
interface_name: eth0
|
|
ip:
|
|
address:
|
|
- 192.168.0.1/24
|
|
|
|
# Create a virtual ethernet card bound to eth0
|
|
- name: veth0
|
|
type: macvlan
|
|
state: up
|
|
parent: eth0
|
|
macvlan:
|
|
mode: bridge
|
|
promiscuous: true
|
|
tap: false
|
|
ip:
|
|
address:
|
|
- 192.168.1.1/24
|
|
|
|
roles:
|
|
- linux-system-roles.network
|