Renamed project from notiier to runbullet

This commit is contained in:
Fabio Manganiello 2017-11-03 12:34:47 +01:00
parent 2837d0df70
commit 7b5813e151
12 changed files with 30 additions and 1 deletions
runbullet/lib/plugins/shell

View file

@ -0,0 +1,24 @@
import subprocess
from .. import Plugin
class ShellPlugin(Plugin):
def run(self, args):
if 'cmd' not in args:
raise RuntimeError('No cmd parameter specified')
cmd = args['cmd']
output = None
error = None
try:
output = subprocess.check_output(cmd,
stderr=subprocess.STDOUT,
shell=True)
except subprocess.CalledProcessError as e:
error = e.output
return [output, error]
# vim:sw=4:ts=4:et: