bumblebee-status/util/cli.py

32 lines
838 B
Python
Raw Normal View History

2020-03-01 14:36:12 +01:00
import os
import shlex
import subprocess
import logging
def execute(cmd, wait=True, ignore_errors=False, include_stderr=False, env=None):
args = shlex.split(cmd)
logging.debug(cmd)
try:
proc = subprocess.Popen(
args,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT if include_stderr else subprocess.PIPE,
env=env,
)
except FileNotFoundError as e:
raise RuntimeError("{} not found".format(cmd))
if wait:
out, _ = proc.communicate()
2020-03-30 21:09:09 +02:00
if proc.returncode != 0:
err = "{} exited with code {}".format(cmd, proc.returncode)
2020-03-30 21:09:09 +02:00
if ignore_errors:
return err
raise RuntimeError(err)
return out.decode("utf-8")
return ""
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4