feat: allow running binaries with sudo
This commit is contained in:
parent
9d93042e1f
commit
f1bf3d7e1d
1 changed files with 8 additions and 2 deletions
8
blend
8
blend
|
@ -128,11 +128,17 @@ def check_container(name):
|
|||
|
||||
|
||||
def check_container_status(name):
|
||||
if os.environ.get('SUDO_USER') == None:
|
||||
return host_get_output("podman inspect --type container " + name + " --format \"{{.State.Status}}\"")
|
||||
else:
|
||||
return host_get_output(f"sudo -u {os.environ.get('SUDO_USER')} podman inspect --type container " + name + " --format \"{{.State.Status}}\"")
|
||||
|
||||
|
||||
def core_start_container(name, new_container=False):
|
||||
subprocess.call(['podman', 'start', name],
|
||||
sudo = []
|
||||
if os.environ.get('SUDO_USER') != None:
|
||||
sudo = ['sudo', '-u', os.environ.get('SUDO_USER')]
|
||||
subprocess.call([*sudo, 'podman', 'start', name],
|
||||
stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
|
||||
|
||||
start_time = time.time() - 1000 # workaround
|
||||
|
|
Loading…
Reference in a new issue