Execute a salt convenience routine.
()
| 521 | |
| 522 | |
| 523 | def salt_run(): |
| 524 | """ |
| 525 | Execute a salt convenience routine. |
| 526 | """ |
| 527 | import salt.cli.run |
| 528 | |
| 529 | if "" in sys.path: |
| 530 | sys.path.remove("") |
| 531 | client = salt.cli.run.SaltRun() |
| 532 | _install_signal_handlers(client) |
| 533 | client.run() |
| 534 | |
| 535 | |
| 536 | def salt_ssh(): |
nothing calls this directly
no test coverage detected