Add example to down and remove a profile

This commit is contained in:
Till Maas 2020-06-17 21:41:29 +02:00
parent 87b671cc1d
commit 71b754de62

View file

@ -0,0 +1,12 @@
# SPDX-License-Identifier: BSD-3-Clause
---
- name: Set {{ profile }} down
hosts: all
vars:
network_connections:
- name: "{{ profile }}"
persistent_state: absent
state: down
roles:
- linux-system-roles.network
...