Commit 1e5d7b0
[reproducer] Fix MAC address corruption in bm_info
The `_with_nics` variable already evaluates to a Python dict from
the `combine()` call. Piping it through `| from_yaml` caused Ansible
to serialize it as a YAML string and re-parse it.
PyYAML's YAML 1.1 sexagesimal rule then corrupted **all-numeric** MAC
addresses (e.g. `41:13:61:22:00:02`) into integers (`41136122002`).
Remove the redundant `| from_yaml` to prevent the lossy round-trip.
Closes: OSPRH-31852
Assisted-By: Claude (claude-4.6-sonnet-medium)
Signed-off-by: Harald Jensås <hjensas@redhat.com>1 parent fc87553 commit 1e5d7b0
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
108 | 108 | | |
109 | 109 | | |
110 | 110 | | |
111 | | - | |
| 111 | + | |
112 | 112 | | |
113 | 113 | | |
114 | 114 | | |
| |||
0 commit comments