Method
run_command
(self, cmd: str, peek_output: bool = False)
Source from the content-addressed store, hash-verified
| 745 | raise ServiceException(f'Unable to disable service {service}: {err}') |
| 746 | |
| 747 | def run_command(self, cmd: str, peek_output: bool = False) -> SysCommand: |
| 748 | return SysCommand(f'arch-chroot -S {self.target} {cmd}', peek_output=peek_output) |
| 749 | |
| 750 | def arch_chroot(self, cmd: str, run_as: str | None = None, peek_output: bool = False) -> SysCommand: |
| 751 | if run_as: |
Tested by
no test coverage detected