mirror of
https://github.com/linux-system-roles/network.git
synced 2026-07-18 17:05:13 +00:00
12 lines
250 B
YAML
12 lines
250 B
YAML
# 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
|
|
...
|