diff --git a/examples/down-profile.yml b/examples/down-profile.yml new file mode 100644 index 0000000..5087240 --- /dev/null +++ b/examples/down-profile.yml @@ -0,0 +1,10 @@ +# SPDX-License-Identifier: BSD-3-Clause +--- +- name: Set {{ profile }} down + hosts: all + vars: + network_connections: + - name: "{{ profile }}" + state: down + roles: + - linux-system-roles.network diff --git a/examples/remove-profile.yml b/examples/remove-profile.yml new file mode 100644 index 0000000..95496aa --- /dev/null +++ b/examples/remove-profile.yml @@ -0,0 +1,10 @@ +# SPDX-License-Identifier: BSD-3-Clause +--- +- name: Remove {{ profile }} + hosts: all + vars: + network_connections: + - name: "{{ profile }}" + state: absent + roles: + - linux-system-roles.network