bumblebee-status/util/cli.py

25 lines
776 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:
2020-03-30 21:09:09 +02:00
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)
if ignore_errors:
return err
raise RuntimeError(err)
return out.decode('utf-8')
2020-03-01 14:36:12 +01:00
return ''
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4