1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
|
###############################################################################
#
# failsafe.cf - Basic Failsafe Policy for Community
#
###############################################################################
body common control
{
bundlesequence => { "update" };
version => "Community Failsafe.cf 1.0.0";
}
#############################################################################
body agent control
{
ifelapsed => "0";
skipidentify => "true";
}
#############################################################################
bundle agent update
{
vars:
"inputs_dir" string => translatepath("$(sys.workdir)/inputs"),
comment => "Directory containing Cfengine policies",
handle => "update_vars_inputs_dir";
"ppkeys_file" string => translatepath("$(sys.workdir)/ppkeys/localhost.pub"),
comment => "Path to public key file",
handle => "update_vars_ppkeys_file";
"file_check" string => translatepath("$(inputs_dir)/promises.cf"),
comment => "Path to a policy file",
handle => "update_vars_file_check";
"master_location" string => "/var/cfengine/masterfiles",
comment => "The master cfengine policy directory on the policy host",
handle => "update_vars_master_location";
#
classes:
"have_ppkeys" expression => fileexists("$(ppkeys_file)"),
comment => "Check for /var/cfengine/ppkeys/localhost.pub",
handle => "update_classes_have_ppkeys";
"files_ok" expression => fileexists("$(file_check)"),
comment => "Check for /var/cfengine/masterfiles/promises.cf",
handle => "update_classes_files_ok";
#
processes:
files_ok::
"cf-serverd" restart_class => "start_server",
comment => "Monitor cf-serverd process",
handle => "update_processes_cf_serverd";
"cf-monitord" restart_class => "start_monitor",
comment => "Monitor cf-monitord process",
handle => "update_processes_cf_monitord";
files_ok.!windows::
"cf-execd" restart_class => "start_exec",
comment => "Monitor cf-execd process",
handle => "update_processes_cf_execd";
#
commands:
start_server::
"$(sys.cf_serverd)"
comment => "Start cf-serverd process",
handle => "update_commands_start_cf_serverd";
start_monitor::
"$(sys.cf_monitord)"
comment => "Start cf-monitord process",
handle => "update_commands_start_cf_monitord";
!windows.start_exec::
"$(sys.cf_execd)"
comment => "Start cf-execd process",
handle => "update_commands_start_cf_execd_not_windows";
!have_ppkeys::
"$(sys.cf_key)",
comment => "Generate cfengine encryption keys if necessary",
handle => "update_commands_generate_keys";
#
files:
!am_policy_hub:: # policy hub should not alter inputs/ uneccessary
"$(inputs_dir)/cf_promises_validated"
comment => "Check whether a validation stamp is available for a new policy update to reduce the distributed load",
handle => "check_valid_update",
copy_from => u_dcp("$(master_location)/cf_promises_validated","$(sys.policy_hub)"),
action => u_immediate,
classes => u_if_repaired("validated_updates_ready");
am_policy_hub|validated_updates_ready:: # policy hub should always put masterfiles in inputs in order to check new policy
"$(inputs_dir)"
comment => "Copy policy updates from master source on policy server if a new validation was acquired",
handle => "update_files_inputs_dir",
copy_from => u_rcp("$(master_location)","$(sys.policy_hub)"),
depth_search => u_recurse("inf"),
file_select => u_input_files,
depends_on => { "grant_access_policy", "check_valid_update" },
action => u_immediate,
classes => u_if_repaired("update_report");
!windows::
"$(sys.workdir)/bin"
comment => "Make sure cfengine binaries have right file permissions",
handle => "update_files_sys_workdir_bin",
perms => u_m("755"),
depth_search => u_recurse_basedir("inf"),
action => u_immediate;
"$(sys.workdir)/lib"
comment => "Make sure cfengine libraries have right file permissions",
handle => "update_files_sys_workdir_lib",
perms => u_m("644"),
depth_search => u_recurse_basedir("inf"),
action => u_immediate;
"/usr/local/sbin"
comment => "Ensure cfengine binaries were copied to /usr/local/sbin",
handle => "update_files_usr_local_sbin",
perms => u_m("755"),
copy_from => u_cp_nobck("$(sys.workdir)/bin"),
file_select => u_cf3_files,
depth_search => u_recurse("1"),
action => u_immediate;
am_policy_hub::
"$(master_location)/."
comment => "Make sure masterfiles folder has right file permissions",
handle => "update_files_sys_workdir_masterfiles",
perms => u_m("644"),
depth_search => u_recurse_basedir("inf"),
action => u_immediate;
}
#########################################################
# Self-contained bodies from the lib to avoid dependencies
#########################################################
body perms u_m(p)
{
mode => "$(p)";
}
#########################################################
body file_select u_cf3_files
{
leaf_name => { "cf-.*" };
file_result => "leaf_name";
}
#########################################################
body file_select u_input_files
{
leaf_name => { ".*.cf",".*.dat",".*.txt" };
file_result => "leaf_name";
}
#########################################################
body copy_from u_rcp(from,server)
{
source => "$(from)";
compare => "digest";
trustkey => "true";
!am_policy_hub::
servers => { "$(server)" };
}
#########################################################
body copy_from u_dcp(from,server)
{
source => "$(from)";
compare => "mtime";
trustkey => "true";
!am_policy_hub::
servers => { "$(server)" };
}
#########################################################
body copy_from u_cp_nobck(from)
{
source => "$(from)";
compare => "digest";
copy_backup => "false";
}
#########################################################
body action u_immediate
{
ifelapsed => "0";
}
#########################################################
body depth_search u_recurse(d)
{
depth => "$(d)";
exclude_dirs => { "\.svn" };
}
#########################################################
body depth_search u_recurse_basedir(d)
{
include_basedir => "true";
depth => "$(d)";
exclude_dirs => { "\.svn" };
}
#########################################################
body classes u_if_repaired(x)
{
promise_repaired => { "$(x)" };
}
#########################################################
|