network/tests/tasks/assert-device_absent.yml
2018-05-23 18:55:21 +02:00

7 lines
245 B
YAML

# SPDX-License-Identifier: BSD-3-Clause
---
- setup:
- assert:
name: "assert that {{ interface }} is absent"
that: "{{ not interface in ansible_interfaces }}"
msg: "{{ interface }} is in ansible_interfaces: {{ ansible_interfaces }}"