From 25bfece386756cbd40b83bc26141edddb0e05c72 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Sat, 4 Apr 2020 11:29:37 +0200 Subject: vyos.util: use common subprocess_cmd wrapper --- python/vyos/util.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'python') diff --git a/python/vyos/util.py b/python/vyos/util.py index 3970b8bf1..5807c837d 100644 --- a/python/vyos/util.py +++ b/python/vyos/util.py @@ -17,6 +17,14 @@ import os import re import sys + +def subprocess_cmd(command): + """ execute arbitrary command via Popen """ + from subprocess import Popen, PIPE + p = Popen(command, stdout=PIPE, shell=True) + p.communicate() + + def read_file(path): """ Read a file to string """ with open(path, 'r') as f: -- cgit v1.2.3