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
This commit is contained in:
lissav 2011-03-23 17:02:04 +00:00
parent 92246870ea
commit 9772091520

View File

@ -2672,10 +2672,14 @@ sub getAllEntries
Input of attr<operator>val strings
$nodelist->getAllAttribsWhere(array of attr<operator> val,'node','group');
$nodelist->getAllAttribsWhere(array of attr<operator>val,'node','group');
returns node and group attributes
$nodelist->getAllAttribsWhere(array of attr<operator> val,'ALL');
$nodelist->getAllAttribsWhere(array of attr<operator>val,'ALL');
returns all attributes
where operator can be
(==,!=,=~,!~, >, <, >=,<=)
Comments:
none