(user, nodeIP string, vmid int, script Script, skipWait bool)
| 57 | } |
| 58 | |
| 59 | func InstallScriptInLXC(user, nodeIP string, vmid int, script Script, skipWait bool) (int, error) { |
| 60 | exitCode, err := core.InstallScriptInLXC(user, nodeIP, vmid, script) |
| 61 | if !skipWait { |
| 62 | utils.WaitForEnterToReturn(err, "Script installation completed successfully!", "Script installation failed") |
| 63 | } |
| 64 | |
| 65 | return exitCode, err |
| 66 | } |
| 67 | |
| 68 | func ValidateConnection(user, nodeIP string) error { |
| 69 | return core.ValidateConnection(user, nodeIP) |
no test coverage detected