(&self, command: &str)
| 1284 | } |
| 1285 | |
| 1286 | pub fn ssh_command(&self, command: &str) -> Result<String, SshCommandError> { |
| 1287 | ssh_command_ip( |
| 1288 | command, |
| 1289 | &self.network.guest_ip0, |
| 1290 | DEFAULT_SSH_RETRIES, |
| 1291 | DEFAULT_SSH_TIMEOUT, |
| 1292 | ) |
| 1293 | } |
| 1294 | |
| 1295 | #[cfg(target_arch = "x86_64")] |
| 1296 | pub fn ssh_command_l1(&self, command: &str) -> Result<String, SshCommandError> { |