Return process from run_as_root.

This commit is contained in:
rick-masters 2023-11-27 13:55:05 +00:00
parent ca2ba18b60
commit 4d20284f85
1 changed files with 2 additions and 2 deletions

View File

@ -28,9 +28,9 @@ def run(*args, **kwargs):
def run_as_root(*args, **kwargs):
"""A helper for run that invokes sudo when unprivileged"""
if os.geteuid() != 0:
run("sudo", *args, **kwargs)
return run("sudo", *args, **kwargs)
else:
run(*args, **kwargs)
return run(*args, **kwargs)
def create_disk(image, disk_type, fs_type, size):
"""Create a disk image, with a filesystem on it"""