<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    <div class="moz-cite-prefix">Am 17.02.2014 17:14, schrieb Adrian
      Valeanu:<br>
    </div>
    <blockquote cite="mid:5302437C0200001C0001E0CF@mail.idiada.com"
      type="cite">
      <meta content="text/html; charset=ISO-8859-1"
        http-equiv="Content-Type">
      <meta name="GENERATOR" content="MSHTML 10.00.9200.16618">
      <div>Hi,</div>
      <div>I try to deploy some software packages based on AD group
        membership. </div>
      <div>The computer is member in the groups s_wpkg_managed and
        s_gimp.</div>
      <div>In the hosts.xml I have it configured like this:</div>
      <div> <host name=".+" groups="s_wpkg_managed"
        profile-id="standard" /><br>
         <host name=".+" groups="s_wpkg_managed,s_gimp"
        profile-id="gimp" /><br>
      </div>
      <br>
    </blockquote>
    The comma separated list is wrong.<br>
    The matches must always be regular expressions, not lists.<br>
    <br>
    BTW, any match all expression can be omitted, so you don't need the
    name attribute, which in turn is deprecated and one should use the
    new hostname attribute instead.<br>
    <br>
    Your example would be as below.<br>
    <br>
    <host groups="s_wpkg_managed" profile-id="standard" /><br>
    <host groups="(s_wpkg_managed|s_gimp)" profile-id="gimp" /><br>
    <pre class="moz-signature" cols="72">

--
Stefan P.

Top-posting:
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing in e-mail?</pre>
  </body>
</html>