Return True if Windows select * from v$transportable_platform; can be used for get all strings possible
(self)
| 463 | return False |
| 464 | |
| 465 | def remoteSystemIsWindows(self): |
| 466 | ''' |
| 467 | Return True if Windows |
| 468 | select * from v$transportable_platform; can be used for get all strings possible |
| 469 | ''' |
| 470 | if self.remoteOS == "": |
| 471 | self.loadInformationRemoteDatabase() |
| 472 | if self.remoteOS == "": |
| 473 | logging.warning("Impossible to known the remote target OS") |
| 474 | if "windows" in self.remoteOS.lower() or "win_nt" in self.remoteOS.lower(): return True |
| 475 | else : return False |
| 476 | |
| 477 | def remoteSystemIsLinux(self): |
| 478 | ''' |
no test coverage detected