RunPing executes `ansible -m ping` using the generated inventory.
(ctx context.Context, inventoryText, inventoryFormat, limit string, extraArgs []string)
| 77 | |
| 78 | // RunPing executes `ansible -m ping` using the generated inventory. |
| 79 | func (r *Runner) RunPing(ctx context.Context, inventoryText, inventoryFormat, limit string, extraArgs []string) CommandResult { |
| 80 | return r.RunPingStream(ctx, inventoryText, inventoryFormat, limit, extraArgs, nil) |
| 81 | } |
| 82 | |
| 83 | // RunPingStream executes `ansible -m ping` and streams output lines when handler is provided. |
| 84 | func (r *Runner) RunPingStream( |
nothing calls this directly
no test coverage detected