(self,cmd: str, call_log:Optional[Callable[[str], None]] = None, user="")
| 448 | return status |
| 449 | |
| 450 | def exec_shell(self,cmd: str, call_log:Optional[Callable[[str], None]] = None, user=""): |
| 451 | cmd = self.activate_shell() + "\n" + cmd |
| 452 | return _run_command_with_call_log(cmd, call_log=call_log, user=user) |
| 453 | |
| 454 | @classmethod |
| 455 | def profile_check_use(cls): |
nothing calls this directly
no test coverage detected