Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 6871123591698337ee06efa6a871ef7b > files > 150

cfengine3-base-3.0.2-1mdv2010.0.i586.rpm

#######################################################
#
# Split a string into a list
#
#######################################################

body common control

{
any::

  bundlesequence  => {
                     test
                     };   
}

#######################################################

bundle agent test

{
vars:

  "split1" slist => splitstring("one:two:three",":","10");
  "split2" slist => splitstring("alpha:xyz:beta","xyz","10");

reports:

 linux::

  "Found key $(split1)";
  "Found key $(split2)";

}