Sophie

Sophie

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

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

########################################################
#
# Simple test copy with link/copy exceptions
#
########################################################

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

body common control

{
bundlesequence  => { "testbundle"  };

version => "1.2.3";
}

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

bundle agent testbundle

{
files:

  "/home/mark/tmp/test_to" 

    copy_from    => mycopy("/home/mark/tmp/test_from"),
    perms        => system,
    move_obstructions => "true",
    depth_search => recurse("inf");

}

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

body perms system

{
mode  => "0644";
}

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

body depth_search recurse(d)

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

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

body copy_from mycopy(from)

{
source      => "$(from)";
#copylink_patterns => { ".*" }; # copy all links
linkcopy_patterns => { ".*" }; # copy all links
#copy_backup => "timestamp";
}