mirror of
https://github.com/linux-system-roles/network.git
synced 2026-01-23 10:25:28 +00:00
The new testing format is more concise and easier to debug when test failure happens. Signed-off-by: Wen Liang <liangwen12year@gmail.com>
9 lines
220 B
YAML
9 lines
220 B
YAML
# SPDX-License-Identifier: BSD-3-Clause
|
|
---
|
|
- name: "** TEST check IPv4"
|
|
command: ip -4 a s {{ interface }}
|
|
register: result
|
|
until: "'{{ address }}' in result.stdout"
|
|
retries: 20
|
|
delay: 2
|
|
changed_when: false
|