common.py: catch stderr in exec_cmd 61/14561/3
authorJosep Puigdemont <josep.puigdemont@enea.com>
Wed, 4 May 2016 12:27:23 +0000 (14:27 +0200)
committerJonas Bjurel <jonas.bjurel@ericsson.com>
Tue, 31 May 2016 19:01:59 +0000 (19:01 +0000)
commit3b8db706acb60b680bcf220bd0236d5efcc66d07
tree36de98a8bdd0423ad9f117059e0171b8b8f85b99
parentec0c7698cd363b71694ca33e87f65fc382acda8d
common.py: catch stderr in exec_cmd

When running commands with exec_cmd(), the stderr of the command is
sent to /dev/null and ignored, and only stdout is retrieved. Thus, when
a command fails and check is enabled, only the output of stdout is
presented to the user, which normally holds no information about the
error.
In this patch we retrieve stderr, and when an error occurs, an exception
is raised with that message.

Fixes https://jira.opnfv.org/browse/FUEL-142

Change-Id: I3940e1a43963a6abec362481b1d4ce7bd7cb816d
Signed-off-by: Josep Puigdemont <josep.puigdemont@enea.com>
deploy/common.py