Skip to content

Instantly share code, notes, and snippets.

@jbd
Created July 19, 2012 22:33
Show Gist options
  • Save jbd/3147331 to your computer and use it in GitHub Desktop.
Save jbd/3147331 to your computer and use it in GitHub Desktop.
CFEngine whitespace policy
body common control
{
bundlesequence => { example };
inputs => { "cfengine_stdlib.cf" };
}
bundle agent example
{
files:
"/tmp/myfile"
edit_line => addline,
create => "true";
}
bundle edit_line addline
{
insert_lines:
"0,5,10,15,20,25,30,35,40,45,50,55"
whitespace_policy => { "ignore_trailing", "ignore_embedded", "ignore_leading" };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment