From be0c38e03bcaf6f2292b90b342512eb4dd9141a0 Mon Sep 17 00:00:00 2001 From: lissav Date: Tue, 23 Jul 2013 13:19:26 +0000 Subject: [PATCH] Do not check for config file for Mellanox, no longer needed. Also improve error message git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@17012 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/DSHCLI.pm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/perl-xCAT/xCAT/DSHCLI.pm b/perl-xCAT/xCAT/DSHCLI.pm index 0d4a4f773..5ba6d1c24 100644 --- a/perl-xCAT/xCAT/DSHCLI.pm +++ b/perl-xCAT/xCAT/DSHCLI.pm @@ -2345,10 +2345,14 @@ sub config_dsh } } else + { + # if not Mellanox, it does not need a config file + if (!($$options{'devicetype'} =~ /Mellanox/i)) { my $rsp = {}; - $rsp->{error}->[0] = "EMsgMISSING_DEV_CFG"; - xCAT::MsgUtils->message('E', $rsp, $::CALLBACK); + $rsp->{error}->[0] = "The config file: $devicepath is missing"; + xCAT::MsgUtils->message('E', $rsp, $::CALLBACK); + } } }