On Wed, Jul 25, 2018 at 9:51 PM, Flavio Leitner fbl@redhat.com wrote:
On Wed, Jul 25, 2018 at 04:24:40PM +0800, Xin Long wrote:
to_stdout is a function, not a string, so fix the check on its return in bond2team.
Fixes: d5a1c8ee9e36 ("utils: add bond2team conversion tool") Signed-off-by: Xin Long lucien.xin@gmail.com
utils/bond2team | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/utils/bond2team b/utils/bond2team index f8d46ef..1a3d7d6 100755 --- a/utils/bond2team +++ b/utils/bond2team @@ -623,9 +623,7 @@ team_ifcfg_write() team_ifcfg_deliver() { pr_dbg "${FUNCNAME} $*"
if [ ! to_stdout ]; thenreturn 0fi
to_stdout || return 0 if [ -z "${OUTPUT_DIR}" ]; then show_output_filesAlthough that fixes the problem, it's not the coding style. Would this work for you?
Sure, will post v2.
diff --git a/utils/bond2team b/utils/bond2team index f8d46ef..fc81c4b 100755 --- a/utils/bond2team +++ b/utils/bond2team @@ -623,7 +623,7 @@ team_ifcfg_write() team_ifcfg_deliver() { pr_dbg "${FUNCNAME} $*"
if [ ! to_stdout ]; then
if ! to_stdout; then return 0 fi-- Flavio
libteam@lists.fedorahosted.org