- Resource declaration
- Resource relationship metaparameters
- Resource relationship chaining arrows
- Variable assigned an array value
- Variable assigned a hash value
- Interpolated variable
- Class definition
- Class declarations
- Defined resource type definition
- Defined type resource declaration
- Defined type resource reference
- Node definition
-
if
statement, using expressions and facts -
if
statement, within
expression - Case statement
- Selector statement
-
Resource default for the
exec
type - Resource collector
- Exported resource collector
- Exported resource declaration
- Virtual resource
A quick reference of syntax examples for the Puppet language.
Resource declaration
-
file
: The resource type. -
ntp.conf
: The resource title. -
path
: An attribute. -
'/etc/ntp.conf'
: The value of an attribute; in this case, a string. -
template('ntp/ntp.conf')
: A function call that returns a value; in this case, thetemplate
function, with the name of a template in a module as its argument.
Resource relationship metaparameters
Two resource declarations establishing relationships with the before
and subscribe
metaparameters, which accept resource references.
ntp
package is installed before the ntp.conf
file is created. The second declaration ensures that the ntpd
service is notified of any changes to the ntp.conf
file.
For details about relationships usage and syntax, see Relationships and ordering. For details about resource references, see Resource and class references.
Resource relationship chaining arrows
Chaining arrows forming relationships between three resources, using resource references.In this example, the ntp
package must be installed before the ntp.conf
file is created; after the file is created, the ntpd
service is notified.
For details about relationships usage and syntax, see Relationships and ordering. For details about resource references, see Resource and class references.
Variable assigned an array value
A variable being assigned a set of values as an array.
For details about assigning values to variables, see Variables.
Variable assigned a hash value
A variable being assigned a set of values as a hash.
For details about assigning values to variables, see Variables.
Interpolated variable
A built-in variable provided by the master being interpolated into a double-quoted string.
For details about built-in variables usage and syntax, see Facts and built-in variables. For information about strings and interpolation, see Strings.
Class definition
A class definition, which makes a class available for later use.
For details about class usage and syntax, see Classes.
Class declarations
ntp
class in three different ways:
- the
include
function -
the
require
function -
the resource-like syntax
include
function is the standard way to declare classes:
require
function declares the class and makes it a dependency of the code container where it is declared:
For details about class usage and syntax, see Classes.
Defined resource type definition
Defining a type creates a new defined resource type. The name of this
defined type has two namespace segments, comprising the name of the module containing the defined type, apache
, and the name of the defined type itself, vhost
.
For details about defined type usage and syntax, see Defined resource types.
Defined type resource declaration
Declarations of an instance, or resource, of a defined type are similar to other resource declarations. This example declares a instance of the apache::vhost
defined type, with a title of "homepages" and the port
and docroot
attributes specified.
For details about defined type usage and syntax, see Defined resource types.
Defined type resource reference
A resource reference to an instance of the apache::vhost
defined resource. Every namespace segment in a resource reference must be capitalized.
For details about defined type usage and syntax, see Defined resource types. For details about resource references, see Resource and class references.
Node definition
A node definition or node statement is a block of Puppet code that is included only in matching nodes’ catalogs. This allows you to assign specific configurations to specific nodes.
Node names in node definitions can also be given as regular expressions.
For details about node definition usage and syntax, see Node definitions.
if
statement, using expressions and facts
if
statement, whose conditions are expressions that use facts provided by the agent.
For details about if
statements, see Conditional statements and expressions.
if
statement, with in
expression
if
statement using an in
expression.
For details about if
statements, see Conditional statements and expressions.
Case statement
For details about case statements, see Conditional statements and expressions.
Selector statement
$rootgroup
variable.
For details about selector statements, see Conditional statements and expressions.
exec
type
Resource default for the exec
resource type attributes path
, environment
, logoutput
, and timeout
.
For details about default statement usage and syntax, see Resource defaults.
Resource collector
For details about resource collector usage and syntax, see Resource collectors.
Exported resource collector
For details about resource collector usage and syntax, see Resource collectors. For information about declaring and collecting exported resources, see Exported resources.
Exported resource declaration
For information about declaring and collecting exported resources, see Exported resources.
Virtual resource
For details about virtual resource usage and syntax, see Virtual resources.