<div dir="ltr"><div class="gmail_extra">On 12 June 2013 09:21, David Baldwin <span dir="ltr"><<a href="mailto:david.baldwin@ausport.gov.au" target="_blank">david.baldwin@ausport.gov.au</a>></span> wrote:<br><div class="gmail_quote">

<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">I think it's all or nothing with regexp.</blockquote>
</div>
<br>Yes, this.  Paraphrasing the man page for analysis.cfg, the target string is exactly one of:</div><div class="gmail_extra" style>(a) comma-separated list of hostnames</div><div class="gmail_extra" style>(b) "*" to indicate "all hosts"</div>

<div class="gmail_extra" style>(c) a Perl-compatible regular expression</div><div class="gmail_extra"><br></div><div class="gmail_extra" style>Pick one.  You're trying to mix these and it won't work.</div><div class="gmail_extra" style>

<br></div>> HOST=%* EXHOST=%(iadjapa)ccmp.*,%stn380esx.*<div><br></div><div style>This won't work because "*" is not a valid regular expression in the HOST= part.  But the "%" should not be needed there because HOST=* matches item (b).</div>

<div style><br></div><div style>David's example should work for you because it's one single regular expression - item (c).</div><div style><br></div><div style>J</div><div style><br></div></div>