You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-7Lines changed: 12 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ The concat module lets you gather `concat::fragment` resources from your other m
27
27
28
28
###What concat affects
29
29
30
-
The concat module requires the [file_concat module](https://forge.puppetlabs.com/ispavailability/file_concat). If you don't have file_concat installed, concat installs it for you.
30
+
The concat module requires the [file_concat module](https://forge.puppetlabs.com/electrical/file_concat). If you don't have file_concat installed, concat installs it for you.
31
31
32
32
###Beginning with concat
33
33
@@ -140,6 +140,10 @@ Specifies whether (and how) to back up the destination file before overwriting i
140
140
141
141
Specifies whether the destination file should exist. Setting to 'absent' tells Puppet to delete the destination file if it exists, and negates the effect of any other parameters. Valid options: 'present' and 'absent'. Default value: 'present'.
142
142
143
+
#####`force`
144
+
145
+
Deprecated as of concat v2.0.0. Has no effect.
146
+
143
147
#####`group`
144
148
145
149
Specifies a permissions group for the destination file. Valid options: a string containing a group name. Default value: undefined.
@@ -170,11 +174,11 @@ Specifies whether to overwrite the destination file if it already exists. Valid
170
174
171
175
Specifies a validation command to apply to the destination file. Requires Puppet version 3.5 or newer. Valid options: a string to be passed to a file resource. Default value: undefined.
172
176
173
-
#####`warn_header`
177
+
#####`warn`
174
178
175
-
Specifies whether to add a header message at the top of the destination file so users know it was autogenerated by Puppet. In earlier versions of the concat module, this parameter was called `warn`. Valid options: the booleans 'true' and 'false', or a string to serve as the header. Default value: 'false'.
179
+
Specifies whether to add a header message at the top of the destination file. Valid options: the booleans 'true' and 'false', or a string to serve as the header. Default value: 'false'.
176
180
177
-
If you set 'warn_header' to 'true', `concat` adds the following message:
181
+
If you set 'warn' to 'true', `concat` adds the following message:
178
182
179
183
~~~
180
184
# This file is managed by Puppet. DO NOT EDIT.
@@ -188,6 +192,10 @@ Except where noted, all the below parameters are optional.
188
192
189
193
Supplies the content of the fragment. **Note**: You must supply either a `content` parameter or a `source` parameter. Valid options: a string. Default value: undef.
190
194
195
+
#####`ensure`
196
+
197
+
Deprecated as of concat v2.0.0. Has no effect.
198
+
191
199
#####`order`
192
200
193
201
Reorders your fragments within the destination file. Fragments that share the same order number are ordered by name. Valid options: a string (recommended) or an integer. Default value: '10'.
@@ -206,11 +214,8 @@ The following functionality existed in previous versions of the concat module, b
0 commit comments