1#  Copyright 2021 Northern.tech AS
2
3#  This file is part of CFEngine 3 - written and maintained by Northern.tech AS.
4
5#  This program is free software; you can redistribute it and/or modify it
6#  under the terms of the GNU General Public License as published by the
7#  Free Software Foundation; version 3.
8
9#  This program is distributed in the hope that it will be useful,
10#  but WITHOUT ANY WARRANTY; without even the implied warranty of
11#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12#  GNU General Public License for more details.
13
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA
17
18# To the extent this program is licensed as part of the Enterprise
19# versions of Cfengine, the applicable Commercial Open Source License
20# (COSL) may apply to this file if you as a licensee so wish it. See
21# included file COSL.txt.
22
23########################################################
24#
25# Simple test processes
26#
27########################################################
28
29body common control
30
31{
32      bundlesequence  => { "example"  };
33}
34
35########################################################
36
37bundle agent example
38
39{
40  processes:
41
42      ".*"
43
44      process_select  => proc_finder("a.*"),
45      process_count   => up("cfservd");
46}
47
48########################################################
49
50body process_count up(s)
51
52{
53      match_range => "1,10"; # or irange("1","10");
54      out_of_range_define => { "$(s)_out_of_control" };
55}
56
57########################################################
58
59body process_select proc_finder(p)
60
61{
62      process_owner  => { "avahi", "bin" };
63      command        => "$(p)";
64      pid            => "100,199";
65      vsize          => "0,1000";
66      process_result => "command.(process_owner|vsize)";
67}
68
69
70