mirror of
https://github.com/linux-system-roles/network.git
synced 2026-01-23 02:15:17 +00:00
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>
10 lines
346 B
YAML
10 lines
346 B
YAML
# SPDX-License-Identifier: BSD-3-Clause
|
|
---
|
|
- name: Remove test interface if necessary
|
|
command: ip link del {{ lsr_interface | d(interface) | quote }}
|
|
changed_when: true
|
|
register: __delete_interface_result
|
|
failed_when:
|
|
- __delete_interface_result.rc != 0
|
|
- __delete_interface_result.stderr is not search("Cannot find device")
|
|
...
|