Sophie

Sophie

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

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

#######################################################
#
# Compressing files
#
#######################################################

body common control
   {
   any::

      bundlesequence  => { 
                         "testbundle"
                         };

   version => "1.2.3";
   }

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

bundle agent testbundle

{
files:

  "/home/mark/tmp/testcopy" 

    file_select => pdf_files,
    transformer => "/usr/bin/gzip $(this.promiser)",
    depth_search => recurse("inf");

}

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

body file_select pdf_files

{
leaf_name => { ".*.pdf" , ".*.fdf" };
file_result => "leaf_name";
}

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

body depth_search recurse(d)

{
depth => "$(d)";
}