1#  Copyright 2020 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# File editing
26#
27# Normal ordering:
28# - delete
29# - replace | column_edit
30# - insert
31#
32######################################################################
33
34
35body common control
36
37{
38      version => "1.2.3";
39      bundlesequence  => { "example"  };
40}
41
42########################################################
43
44bundle agent example
45
46{
47  files:
48
49      # Make a copy of the password file
50
51      "/home/mark/tmp/passwd"
52
53      link_from     => linkdetails("/etc/passwd"),
54      move_obstructions => "true";
55
56
57      "/home/mark/tmp/linktest"
58
59      link_from     => linkchildren("/usr/local/sbin");
60
61
62      #child links
63}
64
65#########################################################
66
67body link_from linkdetails(tofile)
68
69{
70      source        => "$(tofile)";
71      link_type     => "symlink";
72      when_no_source  => "force";      # kill
73}
74
75#########################################################
76
77body link_from linkchildren(tofile)
78
79{
80      source        => "$(tofile)";
81      link_type     => "symlink";
82      when_no_source  => "force";      # kill
83      link_children => "true";
84      when_linking_children => "if_no_such_file"; # "override_file";
85}
86
87