mirror of
https://github.com/linux-system-roles/network.git
synced 2026-01-23 02:15:17 +00:00
Do not use templating in `when:`, `that:`, `until:`. These are evaluated as Jinja statements. In cases where the string used is long or awkward to generate in-line, use an intermediate var for the value. Use a unique loop var instead of `item` in cases where a loop may be called in a nested context. Fix some formatting. Signed-off-by: Rich Megginson <rmeggins@redhat.com>
9 lines
226 B
YAML
9 lines
226 B
YAML
# SPDX-License-Identifier: BSD-3-Clause
|
|
---
|
|
- name: "** TEST check IPv6"
|
|
command: ip -6 a s {{ controller_device | quote }}
|
|
register: result
|
|
until: address in result.stdout
|
|
retries: 20
|
|
delay: 2
|
|
changed_when: false
|