inform of executed command

and discovered a command without the sudo
This commit is contained in:
pedro 2024-10-15 13:38:01 +02:00
parent 1f88aae0ac
commit ddcd956220
1 changed files with 2 additions and 1 deletions

View File

@ -41,6 +41,7 @@ def logs(f):
@logs
def exec_cmd(cmd):
print(f'workbench: INFO: running command `{cmd}`')
return os.popen(cmd).read()
@logs
@ -220,7 +221,7 @@ def gen_erase(all_disks, type_erase, user_disk=None):
@logs
def exec_smart(disk):
cmd = f'smartctl -x --json=cosviu /dev/{disk}'
cmd = f'sudo smartctl -x --json=cosviu /dev/{disk}'
return json.loads(exec_cmd(cmd))