Sophie

Sophie

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

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

#######################################################
#
# GetIndices from an array into a list
#
#######################################################

body common control

{
any::

  bundlesequence  => {
                     test
                     };   
}

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

bundle agent test

{
vars:

  "ps[relayhost]"                  string => "[$(mailrelay)]:587";
  "ps[mydomain]"                   string => "iu.hio.no";
  "ps[smtp_sasl_auth_enable]"      string => "yes";
  "ps[smtp_sasl_password_maps]"    string => "hash:/etc/postfix/sasl-passwd";
  "ps[smtp_sasl_security_options]" string => "";
  "ps[smtp_use_tls]"               string => "yes";
  "ps[default_privs]"              string => "mailman";
  "ps[inet_protocols]"             string => "all";
  "ps[inet_interfaces]"            string => "127.0.0.1";

  "parameter_name" slist => getindices("ps");

reports:

 linux::

  "Found key $(parameter_name)";

}