From 97720915206652410a7193dcad34ca954994aa4b Mon Sep 17 00:00:00 2001 From: lissav Date: Wed, 23 Mar 2011 17:02:04 +0000 Subject: [PATCH] add support for like and not like git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@9136 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/Table.pm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/perl-xCAT/xCAT/Table.pm b/perl-xCAT/xCAT/Table.pm index 235022273..31294ece9 100644 --- a/perl-xCAT/xCAT/Table.pm +++ b/perl-xCAT/xCAT/Table.pm @@ -2672,10 +2672,14 @@ sub getAllEntries Input of attrval strings - $nodelist->getAllAttribsWhere(array of attr val,'node','group'); + $nodelist->getAllAttribsWhere(array of attrval,'node','group'); returns node and group attributes - $nodelist->getAllAttribsWhere(array of attr val,'ALL'); + $nodelist->getAllAttribsWhere(array of attrval,'ALL'); returns all attributes + where operator can be + (==,!=,=~,!~, >, <, >=,<=) + + Comments: none