Skip to content

Commit 315359f

Browse files
committed
move class globals parameter reference to pp
1 parent 3542ca4 commit 315359f

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

Diff for: README.md

-7
Original file line numberDiff line numberDiff line change
@@ -339,13 +339,6 @@ You must declare the class to use it:
339339

340340
class { 'puppetdb::globals': }
341341

342-
**Parameters within `puppetdb::globals`:**
343-
344-
#### `version`
345-
346-
The version of the `puppetdb` package that should be installed. You may specify
347-
an explicit version number, 'present', or 'latest' (defaults to 'present').
348-
349342
### puppetdb
350343

351344
The `puppetdb` class is intended as a high-level abstraction (sort of an

Diff for: REFERENCE.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1121,7 +1121,8 @@ The following parameters are available in the `puppetdb::globals` class:
11211121

11221122
Data type: `Any`
11231123

1124-
1124+
The version of the `puppetdb` package that should be installed. You may specify
1125+
an explicit version number, 'present', or 'latest' (defaults to 'present').
11251126

11261127
Default value: `'present'`
11271128

Diff for: manifests/globals.pp

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# global configuration class for PuppetDB
22
#
3+
# @param version
4+
# The version of the `puppetdb` package that should be installed. You may specify
5+
# an explicit version number, 'present', or 'latest' (defaults to 'present').
6+
#
37
class puppetdb::globals (
48
$version = 'present',
59
Stdlib::Absolutepath $puppet_confdir = $settings::confdir,

0 commit comments

Comments
 (0)