Sophie

Sophie

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

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

#cop update,example
#cop What should a failsafe and update file contain?,example

# Minimum failsafe

body common control
{
bundlesequence => { "update" };
}

bundle agent update
{
vars:

 "master_location" string => "$(sys.workdir)/masterfiles";

 "policy_server"   string => readfile("$(sys.workdir)/policy_server.dat",40),
                      comment => "IP address to locate your policy host.";

classes:

  "policy_host" or => { 
                      classmatch(canonify("ipv4_$(policy_server)")),
                      classmatch(canonify("$(policy_server)"))
                      },

                   comment => "Define the ip identity of the policy source host";

  "have_ppkeys" expression => fileexists("$(sys.workdir)/ppkeys/localhost.pub");

  "nofile" expression => fileexists("$(sys.workdir)/policy_server.dat");

commands:

 !have_ppkeys::

   "/usr/local/sbin/cf-key";

files:

  "/var/cfengine/inputs" 

    handle => "update_policy",
    perms => u_p("600"),
    copy_from => u_scp("$(master_location)"),
    depth_search => u_recurse("inf"),
    action => immediate;

  "/var/cfengine/bin" 

    perms => u_p("700"),
    copy_from => u_scp("/usr/local/sbin"),
    depth_search => u_recurse("inf"),
    action => immediate;

processes:

  any::

    "cf-execd" restart_class => "start_exec";

  policy_host::

    "cf-serverd" restart_class => "start_server";

commands:

 start_exec::
  "$(sys.workdir)/bin/cf-execd",
   action => logme("executor");

 start_server::
  "$(sys.workdir)/bin/cf-serverd",
   action => logme("server");

reports:

  bootstrap_mode.policy_host::

      "I am the policy host - i.e. with ipv4 address $(policy_server)";

}

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

body action logme(x)
{
log_repaired => "stdout";
logstring => " -> Started the $(x) (success)";
}

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

body perms u_p(p)

{
mode  => "$(p)";
}

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

body copy_from u_scp(from)

{
source      => "$(from)";
compare     => "digest";
trustkey    => "true";

!policy_host::

servers => { "$(policy_server)" };
}

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

body action immediate
{
ifelapsed => "1";
}

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

body depth_search u_recurse(d)

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