mirror of
https://github.com/linux-system-roles/network.git
synced 2026-01-23 18:35:13 +00:00
The keyword `include:` is deprecated in favor of `include_tasks:`. See https://docs.ansible.com/ansible/latest/collections/ansible/builtin/include_module.html Signed-off-by: Rich Megginson <rmeggins@redhat.com>
7 lines
229 B
YAML
7 lines
229 B
YAML
# SPDX-License-Identifier: BSD-3-Clause
|
|
---
|
|
- include_tasks: get_profile_stat.yml
|
|
- name: "assert that profile '{{ profile }}' is absent"
|
|
assert:
|
|
that: not lsr_net_profile_exists
|
|
msg: "profile {{ profile }} does exist"
|