What are the components of a ruleList?
Each ruleList can contain one or more <compareText>, <fileTest>, <fileContentTest>
or any other rule sections. <compareText>
text comparison rules can contain three fields :
Example:
<compareText>
<text>${server}</text>
<logic>equals</logic>
<value>Apache</value>
</compareText>
<fileTest>
file testing rules contain two fields :
Example:
<fileTest>
<path>/usr/bin/perl</path>
<condition>executable</condition>
</fileTest>
<fileContentTest>
file content testing rules contain three fields :
Example:
<fileContentTest>
<path>/etc/group</path>
<logic>contains</logic>
<text>apache</text>
</fileContentTest>