Implement execute_secure

Allows us to sanitize commands involving sensitive information like
passwords, before throwing exceptions
pull/1/head
bom 12 months ago
parent 2ead8cc31b
commit 8ae03f5811

@ -101,9 +101,15 @@ class ExecutionApi:
raise exc
return output
# TODO: check for exception handling
# TODO: can we return the output here also?
# TODO: should we also print stderr?
def execute_secure(self, command: str, sanitized_command: str, dry_run=False, shell=True, check=True):
try:
output = self.execute(command, dry_run, shell, check)
return output
except CalledProcessError as exc:
sanitized_exc = exc
sanitized_exc.cmd = sanitized_command
raise sanitized_exc
def execute_live(self, command: str, dry_run=False, shell=True):
if dry_run:
print(command)

Loading…
Cancel
Save