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# Remote value from hub
26#
27########################################################
28
29#
30# run this as follows:
31#
32# cf-serverd -f runtest_1.cf [-d2]
33# cf-agent   -f runtest_2.cf
34#
35# Notice that the same file configures all parts of cfengine
36
37########################################################
38
39body common control
40
41{
42      bundlesequence  => { "example"  };
43
44      version => "1.2.3";
45}
46
47########################################################
48
49bundle agent example
50
51{
52  vars:
53
54      "remote_value" string => hubknowledge("monitoring");
55
56  reports:
57
58      "Global knowledge: $(remote_value)";
59}
60
61#########################################################
62# Server config
63#########################################################
64
65body server control
66
67{
68      allowconnects         => { "127.0.0.1" , "::1" };
69      allowallconnects      => { "127.0.0.1" , "::1" };
70      trustkeysfrom         => { "127.0.0.1" , "::1" };
71      allowusers            => { "mark" };
72}
73
74#########################################################
75
76bundle server access_rules()
77
78{
79  access:
80
81      "discovered value"
82
83      handle  => "monitoring",
84      resource_type => "literal",
85      admit   => { "127.0.0.1" };
86
87}
88