Plugin provides Ansible integration for inventory generation and playbook execution.
| 62 | |
| 63 | // Plugin provides Ansible integration for inventory generation and playbook execution. |
| 64 | type Plugin struct { |
| 65 | app *components.App |
| 66 | runner *coreansible.Runner |
| 67 | runMu sync.Mutex |
| 68 | runCancel context.CancelFunc |
| 69 | lastPlaybookFormState *playbookFormState |
| 70 | } |
| 71 | |
| 72 | type playbookFormState struct { |
| 73 | PlaybookPath string |
nothing calls this directly
no outgoing calls
no test coverage detected