2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-06-13 01:40:26 +00:00

[xCAT-server]: Remove an unnecessary string comparison from DBobjectdefs.pm

This commit is contained in:
Samveen
2015-08-27 13:57:01 +00:00
parent 2f88aff982
commit dd5dadd8ce

View File

@ -3267,10 +3267,9 @@ sub defls
else
{
$myhash{$obj}{postscripts} = $xcatdefaultsps;
}
if($::opt_V && ($myhash{$obj}{postscripts} eq $xcatdefaultsps))
{
$myhash{$obj}{postscripts} .= " (Table:postscripts - Key:node - Column:postscripts)";
if($::opt_V) {
$myhash{$obj}{postscripts} .= " (Table:postscripts - Key:node - Column:postscripts)";
}
}
}
if($xcatdefaultspbs)