1body file control
2{
3  # This policy uses parts of the standard library.
4  inputs => { "$(sys.libdir)/paths.cf" };
5}
6
7bundle agent main
8{
9  classes:
10      "group_cfengineers_absent"
11        not => groupexists("cfengineers");
12
13  commands:
14    linux.group_cfengineers_absent::
15      "$(paths.groupadd)"
16        args => "cfengineers";
17}
18