From 71b754de62315c3f3799eaaa8844d5f7eb40560f Mon Sep 17 00:00:00 2001 From: Till Maas Date: Wed, 17 Jun 2020 21:41:29 +0200 Subject: [PATCH] Add example to down and remove a profile --- examples/remove+down_profile.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 examples/remove+down_profile.yml diff --git a/examples/remove+down_profile.yml b/examples/remove+down_profile.yml new file mode 100644 index 0000000..da2b1b8 --- /dev/null +++ b/examples/remove+down_profile.yml @@ -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 +...