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#
26# Insert a number of lines and trigger a followup if edited
27#
28#######################################################
29
30body common control
31
32{
33    any::
34
35      bundlesequence  => { "insert" };
36}
37
38
39#######################################################
40
41bundle agent insert
42
43{
44  vars:
45
46      "v" string => "
47                One potato
48                Two potato
49                Three potahto
50                Four
51                ";
52
53  files:
54
55      "/tmp/test_insert"
56
57      edit_line => Insert("$(insert.v)"),
58      edit_defaults => empty,
59      classes => trigger("edited");
60
61  commands:
62
63    edited::
64
65      "/bin/echo make bananas";
66
67  reports:
68
69    edited::
70
71      "The potatoes are bananas";
72
73}
74
75#######################################################
76# For the library
77#######################################################
78
79bundle edit_line Insert(name)
80
81{
82  insert_lines:
83
84      "Begin$(const.n) $(name)$(const.n)End";
85
86}
87
88#######################################################
89
90body edit_defaults empty
91
92{
93      empty_file_before_editing => "true";
94}
95
96#######################################################
97
98body classes trigger(x)
99
100{
101      promise_repaired => { "$(x)" };
102}
103