1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
|
.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "PUPPET\-EPP" "8" "September 2024" "Puppet, Inc." "Puppet manual"
.
.SH "NAME"
\fBpuppet\-epp\fR \- Interact directly with the EPP template parser/renderer\.
.
.SH "SYNOPSIS"
puppet epp \fIaction\fR
.
.SH "OPTIONS"
Note that any setting that\'s valid in the configuration file is also a valid long argument, although it may or may not be relevant to the present action\. For example, \fBserver\fR and \fBrun_mode\fR are valid settings, so you can specify \fB\-\-server <servername>\fR, or \fB\-\-run_mode <runmode>\fR as an argument\.
.
.P
See the configuration file documentation at \fIhttps://puppet\.com/docs/puppet/latest/configuration\.html\fR for the full list of acceptable parameters\. A commented list of all configuration options can also be generated by running puppet with \fB\-\-genconfig\fR\.
.
.TP
\-\-render\-as FORMAT
The format in which to render output\. The most common formats are \fBjson\fR, \fBs\fR (string), \fByaml\fR, and \fBconsole\fR, but other options such as \fBdot\fR are sometimes available\.
.
.TP
\-\-verbose
Whether to log verbosely\.
.
.TP
\-\-debug
Whether to log debug information\.
.
.SH "ACTIONS"
.
.IP "\(bu" 4
\fBdump\fR \- Outputs a dump of the internal template parse tree for debugging: \fBSYNOPSIS\fR
.
.IP
puppet epp dump [\-\-e \fIsource\fR] [\-\-[no\-]validate] [\-\-format \fIold, pn, or json\fR] [\-\-pretty] [\-\-[no\-]header] [\-\-format \fIold|pn|json\fR] [\-\-pretty] { \-e \fIsource\fR | [\fItemplates\fR \.\.\.] }
.
.IP
\fBDESCRIPTION\fR
.
.IP
The dump action parses and validates the EPP syntax and dumps the resulting AST model in a human readable (but not necessarily an easy to understand) format\.
.
.IP
The output format can be controlled using the \-\-format \fIold|pn|json\fR where:
.
.IP "\(bu" 4
\'old\' is the default, but now deprecated format which is not API\.
.
.IP "\(bu" 4
\'pn\' is the Puppet Extended S\-Expression Notation\.
.
.IP "\(bu" 4
\'json\' outputs the same graph as \'pn\' but with JSON syntax\.
.
.IP "" 0
.
.IP
The output will be "pretty printed" when the option \-\-pretty is given together with \-\-format \'pn\' or \'json\'\. This option has no effect on the \'old\' format\.
.
.IP
The command accepts one or more templates (\.epp) files, or an \-e followed by the template source text\. The given templates can be paths to template files, or references to templates in modules when given on the form \fImodulename\fR/\fItemplate\-name\fR\.epp\. If no arguments are given, the stdin is read (unless it is attached to a terminal)
.
.IP
If multiple templates are given, they are separated with a header indicating the name of the template\. This can be suppressed with the option \-\-no\-header\. The option \-\-[no\-]header has no effect when a single template is dumped\.
.
.IP
When debugging the epp parser itself, it may be useful to suppress the validation step with the \fB\-\-no\-validate\fR option to observe what the parser produced from the given source\.
.
.IP
This command ignores the \-\-render\-as setting/option\.
.
.IP
\fBOPTIONS\fR \fI\-\-e <source\fR> \- Dump one epp source expression given on the command line\.
.
.IP
\fI\-\-format <old, pn, or json\fR> \- Get result in \'old\' (deprecated format), \'pn\' (new format), or \'json\' (new format in JSON)\.
.
.IP
\fI\-\-[no\-]header\fR \- Whether or not to show a file name header between files\.
.
.IP
\fI\-\-pretty\fR \- Pretty print output\. Only applicable together with \-\-format pn or json
.
.IP
\fI\-\-[no\-]validate\fR \- Whether or not to validate the parsed result, if no\-validate only syntax errors are reported\.
.
.IP
\fBRETURNS\fR
.
.IP
A dump of the resulting AST model unless there are syntax or validation errors\.
.
.IP "\(bu" 4
\fBrender\fR \- Renders an epp template as text: \fBSYNOPSIS\fR
.
.IP
puppet epp render [\-\-node \fInode_name\fR] [\-\-e \fIsource\fR] [\-\-values \fIvalues_hash\fR] [\-\-values_file \fIpp_or_yaml_file\fR] [\-\-facts \fIfacts_file\fR] [\-\-[no\-]header] \-e \fIsource\fR | [\fItemplates\fR \.\.\.]
.
.IP
\fBDESCRIPTION\fR
.
.IP
This action renders one or more EPP templates\.
.
.IP
The command accepts one or more templates (\.epp files), given the same way as templates are given to the puppet \fBepp\fR function (a full path, or a relative reference on the form \'\fImodulename\fR/\fItemplate\-name\fR\.epp\'), or as a relative path\.args In case the given path matches both a modulename/template and a file, the template from the module is used\.
.
.IP
An inline_epp equivalent can also be performed by giving the template after an \-e, or by piping the EPP source text to the command\.
.
.IP
Values to the template can be defined using the Puppet Language on the command line with \fB\-\-values\fR or in a \.pp or \.yaml file referenced with \fB\-\-values_file\fR\. If specifying both the result is merged with \-\-values having higher precedence\.
.
.IP
The \-\-values option allows a Puppet Language sequence of expressions to be defined on the command line the same way as it may be given in a \.pp file referenced with \fB\-\-values_file\fR\. It may set variable values (that become available in the template), and must produce either \fBundef\fR or a \fBHash\fR of values (the hash may be empty)\. Producing \fBundef\fR simulates that the template is called without an arguments hash and thus only references variables in its outer scope\. When a hash is given, a template is limited to seeing only the global scope\. It is thus possible to simulate the different types of calls to the \fBepp\fR and \fBinline_epp\fR functions, with or without a given hash\. Note that if variables are given, they are always available in this simulation \- to test that the template only references variables given as arguments, produce a hash in \-\-values or the \-\-values_file, do not specify any variables that are not global, and turn on \-\-strict_variables setting\.
.
.IP
If multiple templates are given, the same set of values are given to each template\. If both \-\-values and \-\-value_file are used, the \-\-values are merged on top of those given in the file\.
.
.IP
When multiple templates are rendered, a separating header is output between the templates showing the name of the template before the output\. The header output can be turned off with \fB\-\-no\-header\fR\. This also concatenates the template results without any added newline separators\.
.
.IP
Facts from the node where the command is being run are used by default\.args Facts can be obtained for other nodes if they have called in, and reported their facts by using the \fB\-\-node <nodename>\fR flag\.
.
.IP
Overriding node facts as well as additional facts can be given in a \.yaml or \.json file and referencing it with the \-\-facts option\. (Values can be obtained in yaml format directly from \fBfacter\fR, or from puppet for a given node)\. Note that it is not possible to simulate the reserved variable name \fB$facts\fR in any other way\.
.
.IP
Note that it is not possible to set variables using the Puppet Language that have the same names as facts as this result in an error; "attempt to redefine a variable" since facts are set first\.
.
.IP
Exits with 0 if there were no validation errors\. On errors, no rendered output is produced for that template file\.
.
.IP
When designing EPP templates, it is strongly recommended to define all template arguments in the template, and to give them in a hash when calling \fBepp\fR or \fBinline_epp\fR and to use as few global variables as possible, preferably only the $facts hash\. This makes templates more free standing and are easier to reuse, and to test\.
.
.IP
\fBOPTIONS\fR \fI\-\-e <source\fR> \- Render one inline epp template given on the command line\.
.
.IP
\fI\-\-facts <facts_file\fR> \- A \.yaml or \.json file containing a hash of facts made available in $facts and $trusted
.
.IP
\fI\-\-[no\-]header\fR \- Whether or not to show a file name header between rendered results\.
.
.IP
\fI\-\-node <node_name\fR> \- The name of the node for which facts are obtained\. Defaults to facts for the local node\.
.
.IP
\fI\-\-values <values_hash\fR> \- A Hash in Puppet DSL form given as arguments to the template being rendered\.
.
.IP
\fI\-\-values_file <pp_or_yaml_file\fR> \- A \.pp or \.yaml file that is processed to produce a hash of values for the template\.
.
.IP
\fBRETURNS\fR
.
.IP
A rendered result of one or more given templates\.
.
.IP "\(bu" 4
\fBvalidate\fR \- Validate the syntax of one or more EPP templates\.: \fBSYNOPSIS\fR
.
.IP
puppet epp validate [\-\-[no\-]continue_on_error] [\fItemplate\fR] [\fItemplate\fR \.\.\.]
.
.IP
\fBDESCRIPTION\fR
.
.IP
This action validates EPP syntax without producing any output\.
.
.IP
When validating, multiple issues per file are reported up to the settings of max_error, and max_warnings\. The processing stops after having reported issues for the first encountered file with errors unless the option \-\-continue_on_error is given\.
.
.IP
Files can be given using the \fBmodulename/template\.epp\fR style to lookup the template from a module, or be given as a reference to a file\. If the reference to a file can be resolved against a template in a module, the module version wins \- in this case use an absolute path to reference the template file if the module version is not wanted\.
.
.IP
Exits with 0 if there were no validation errors\.
.
.IP
\fBOPTIONS\fR \fI\-\-[no\-]continue_on_error\fR \- Whether or not to continue after errors are reported for a template\.
.
.IP
\fBRETURNS\fR
.
.IP
Nothing, or encountered syntax errors\.
.
.IP "" 0
.
.SH "EXAMPLES"
\fBrender\fR
.
.P
Render the template in module \'mymodule\' called \'mytemplate\.epp\', and give it two arguments \fBa\fR and \fBb\fR:
.
.IP "" 4
.
.nf
$ puppet epp render mymodule/mytemplate\.epp \-\-values \'{a => 10, b => 20}\'
.
.fi
.
.IP "" 0
.
.P
Render a template using an absolute path:
.
.IP "" 4
.
.nf
$ puppet epp render /tmp/testing/mytemplate\.epp \-\-values \'{a => 10, b => 20}\'
.
.fi
.
.IP "" 0
.
.P
Render a template with data from a \.pp file:
.
.IP "" 4
.
.nf
$ puppet epp render /tmp/testing/mytemplate\.epp \-\-values_file mydata\.pp
.
.fi
.
.IP "" 0
.
.P
Render a template with data from a \.pp file and override one value on the command line:
.
.IP "" 4
.
.nf
$ puppet epp render /tmp/testing/mytemplate\.epp \-\-values_file mydata\.pp \-\-values \'{a=>10}\'
.
.fi
.
.IP "" 0
.
.P
Render from STDIN:
.
.IP "" 4
.
.nf
$ cat template\.epp | puppet epp render \-\-values \'{a => 10, b => 20}\'
.
.fi
.
.IP "" 0
.
.P
Set variables in a \.pp file and render a template that uses variable references:
.
.IP "" 4
.
.nf
# data\.pp file
$greeted = \'a global var\'
undef
$ puppet epp render \-e \'hello <%= $greeted %>\' \-\-values_file data\.pp
.
.fi
.
.IP "" 0
.
.P
Render a template that outputs a fact:
.
.IP "" 4
.
.nf
$ facter \-\-yaml > data\.yaml
$ puppet epp render \-e \'<% $facts[osfamily] %>\' \-\-facts data\.yaml
.
.fi
.
.IP "" 0
.
.P
\fBvalidate\fR
.
.P
Validate the template \'template\.epp\' in module \'mymodule\':
.
.IP "" 4
.
.nf
$ puppet epp validate mymodule/template\.epp
.
.fi
.
.IP "" 0
.
.P
Validate two arbitrary template files:
.
.IP "" 4
.
.nf
$ puppet epp validate mymodule/template1\.epp yourmodule/something\.epp
.
.fi
.
.IP "" 0
.
.P
Validate a template somewhere in the file system:
.
.IP "" 4
.
.nf
$ puppet epp validate /tmp/testing/template1\.epp
.
.fi
.
.IP "" 0
.
.P
Validate a template against a file relative to the current directory:
.
.IP "" 4
.
.nf
$ puppet epp validate template1\.epp
$ puppet epp validate \./template1\.epp
.
.fi
.
.IP "" 0
.
.P
Validate from STDIN:
.
.IP "" 4
.
.nf
$ cat template\.epp | puppet epp validate
.
.fi
.
.IP "" 0
.
.P
Continue on error to see errors for all templates:
.
.IP "" 4
.
.nf
$ puppet epp validate mymodule/template1\.epp mymodule/template2\.epp \-\-continue_on_error
.
.fi
.
.IP "" 0
.
.SH "COPYRIGHT AND LICENSE"
Copyright 2014 by Puppet Inc\. Apache 2 license; see COPYING
|