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>
17 lines
354 B
YAML
17 lines
354 B
YAML
# SPDX-License-Identifier: BSD-3-Clause
|
|
---
|
|
- name: Example of profile management
|
|
hosts: all
|
|
vars:
|
|
network_connections:
|
|
# Specify the dummy profile
|
|
- name: dummy0
|
|
state: up
|
|
type: dummy
|
|
interface_name: dummy0
|
|
ip:
|
|
address:
|
|
- 192.0.2.42/30
|
|
|
|
roles:
|
|
- linux-system-roles.network
|