Sophie

Sophie

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

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

#######################################################
#
# Test dead link removal
#
#######################################################

body common control
   {
   any::

      bundlesequence  => { 
                         "testbundle"
                         };
   }


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

bundle agent testbundle

{
files:

  "/home/mark/tmp/test_to" -> "someone"

      depth_search => recurse("inf"),
      perms => modestuff,
      action => tell_me;

}

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

body depth_search recurse(d)

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

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

body perms modestuff

{
mode => "o-w";
}

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

body action tell_me

{
report_level => "inform";
}