network/tests/tasks/assert_device_absent.yml
Martin Pitt e8a3ff4881 feat: support this role in container builds
Feature: Support running the timesync role during container builds.

Reason: This is particularly useful for building bootc derivative OSes.

Result: These flags enable running the bootc container scenarios in CI,
which ensures that the role works in buildah build environment. This
allows us to officially support this role for image mode builds.

Signed-off-by: Rich Megginson <rmeggins@redhat.com>
2025-10-20 11:00:34 -06:00

8 lines
323 B
YAML

# SPDX-License-Identifier: BSD-3-Clause
---
- name: Include the task 'get_interface_stat.yml'
include_tasks: get_interface_stat.yml
- name: "Assert that the interface is absent - '{{ lsr_interface | d(interface) }}'"
assert:
that: not interface_stat.stat.exists
msg: "{{ lsr_interface | d(interface) }} exists"