(hypervisor)
| 43 | FAILED) |
| 44 | |
| 45 | def _configure_ssh_credentials(hypervisor): |
| 46 | ssh_command = "ssh -q -i ~/.ssh/id_rsa.cloud -ostricthostkeychecking=no " |
| 47 | |
| 48 | if (str(hypervisor).lower() == 'vmware' |
| 49 | or str(hypervisor).lower() == 'hyperv'): |
| 50 | ssh_command = "ssh -q -i ~cloud/.ssh/id_rsa -ostricthostkeychecking=no " |
| 51 | |
| 52 | return ssh_command |
| 53 | |
| 54 | |
| 55 | def _configure_timeout(hypervisor): |
no outgoing calls
no test coverage detected