puppet 3.1.0.rc1 → 3.1.0.rc2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of puppet might be problematic. Click here for more details.
- data/COMMITTERS.md +185 -0
- data/ext/debian/changelog.erb +6 -0
- data/ext/debian/puppet-common.manpages +1 -0
- data/ext/debian/puppet.default +3 -1
- data/ext/debian/puppetmaster.default +6 -3
- data/ext/redhat/puppet.spec.erb +16 -5
- data/lib/puppet.rb +3 -5
- data/lib/puppet/defaults.rb +6 -5
- data/lib/puppet/dsl.rb +3 -7
- data/lib/puppet/dsl/resource_api.rb +120 -0
- data/lib/puppet/dsl/resource_type_api.rb +34 -0
- data/lib/puppet/module_tool.rb +23 -11
- data/lib/puppet/network/formats.rb +1 -1
- data/lib/puppet/node/environment.rb +1 -3
- data/lib/puppet/parser/ast/definition.rb +5 -2
- data/lib/puppet/parser/ast/hostclass.rb +3 -2
- data/lib/puppet/parser/ast/node.rb +5 -2
- data/lib/puppet/parser/ast/resourceparam.rb +1 -1
- data/lib/puppet/parser/compiler.rb +0 -10
- data/lib/puppet/parser/lexer.rb +50 -39
- data/lib/puppet/parser/parser_support.rb +29 -11
- data/lib/puppet/parser/scope.rb +2 -2
- data/lib/puppet/parser/type_loader.rb +7 -31
- data/lib/puppet/provider/package/openbsd.rb +16 -2
- data/lib/puppet/provider/package/pip.rb +11 -2
- data/lib/puppet/provider/package/portage.rb +29 -12
- data/lib/puppet/provider/service/launchd.rb +19 -14
- data/lib/puppet/provider/service/upstart.rb +1 -1
- data/lib/puppet/provider/user/hpux.rb +37 -2
- data/lib/puppet/resource.rb +25 -38
- data/lib/puppet/resource/type.rb +6 -14
- data/lib/puppet/settings.rb +1 -1
- data/lib/puppet/ssl/certificate_authority.rb +4 -1
- data/lib/puppet/ssl/certificate_request.rb +3 -1
- data/lib/puppet/ssl/certificate_signer.rb +22 -0
- data/lib/puppet/type.rb +4 -4
- data/lib/puppet/util/methodhelper.rb +0 -19
- data/lib/puppet/util/rubygems.rb +3 -1
- data/lib/puppet/util/selinux.rb +1 -6
- data/lib/puppet/version.rb +1 -1
- data/man/man5/puppet.conf.5 +81 -95
- data/man/man8/extlookup2hiera.8 +23 -0
- data/man/man8/puppet-agent.8 +3 -3
- data/man/man8/puppet-apply.8 +2 -6
- data/man/man8/puppet-ca.8 +6 -7
- data/man/man8/puppet-catalog.8 +6 -7
- data/man/man8/puppet-cert.8 +4 -4
- data/man/man8/puppet-certificate.8 +6 -7
- data/man/man8/puppet-certificate_request.8 +6 -7
- data/man/man8/puppet-certificate_revocation_list.8 +6 -7
- data/man/man8/puppet-config.8 +4 -8
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +1 -1
- data/man/man8/puppet-doc.8 +3 -3
- data/man/man8/puppet-facts.8 +4 -8
- data/man/man8/puppet-file.8 +6 -7
- data/man/man8/puppet-filebucket.8 +1 -1
- data/man/man8/puppet-help.8 +2 -6
- data/man/man8/puppet-inspect.8 +1 -1
- data/man/man8/puppet-instrumentation_data.8 +3 -7
- data/man/man8/puppet-instrumentation_listener.8 +3 -7
- data/man/man8/puppet-instrumentation_probe.8 +3 -7
- data/man/man8/puppet-key.8 +6 -7
- data/man/man8/puppet-kick.8 +5 -1
- data/man/man8/puppet-man.8 +2 -6
- data/man/man8/puppet-master.8 +2 -2
- data/man/man8/puppet-module.8 +11 -9
- data/man/man8/puppet-node.8 +38 -37
- data/man/man8/puppet-parser.8 +2 -6
- data/man/man8/puppet-plugin.8 +2 -6
- data/man/man8/puppet-queue.8 +1 -1
- data/man/man8/puppet-report.8 +3 -7
- data/man/man8/puppet-resource.8 +1 -1
- data/man/man8/puppet-resource_type.8 +3 -7
- data/man/man8/puppet-secret_agent.8 +2 -6
- data/man/man8/puppet-status.8 +3 -7
- data/man/man8/puppet.8 +1 -1
- data/spec/integration/parser/ruby_manifest_spec.rb +128 -0
- data/spec/lib/puppet_spec/compiler.rb +0 -11
- data/spec/spec_helper.rb +3 -4
- data/spec/unit/dsl/resource_api_spec.rb +180 -0
- data/spec/unit/dsl/resource_type_api_spec.rb +53 -0
- data/spec/unit/module_tool_spec.rb +79 -46
- data/spec/unit/network/formats_spec.rb +4 -0
- data/spec/unit/node/environment_spec.rb +0 -13
- data/spec/unit/parser/compiler_spec.rb +0 -26
- data/spec/unit/parser/parser_spec.rb +14 -0
- data/spec/unit/parser/type_loader_spec.rb +4 -15
- data/spec/unit/provider/package/openbsd_spec.rb +148 -35
- data/spec/unit/provider/package/pip_spec.rb +49 -25
- data/spec/unit/provider/package/portage_spec.rb +65 -0
- data/spec/unit/provider/service/launchd_spec.rb +6 -5
- data/spec/unit/provider/user/hpux_spec.rb +39 -11
- data/spec/unit/provider/user/useradd_spec.rb +14 -14
- data/spec/unit/resource/type_spec.rb +7 -49
- data/spec/unit/resource_spec.rb +0 -32
- data/spec/unit/ssl/certificate_request_spec.rb +18 -0
- data/spec/unit/util/rubygems_spec.rb +1 -1
- data/spec/unit/util/selinux_spec.rb +0 -2
- metadata +17 -50
- data/lib/puppet/dsl/actions.rb +0 -283
- data/lib/puppet/dsl/blank_slate.rb +0 -55
- data/lib/puppet/dsl/context.rb +0 -393
- data/lib/puppet/dsl/parser.rb +0 -57
- data/lib/puppet/dsl/resource_decorator.rb +0 -56
- data/lib/puppet/dsl/resource_reference.rb +0 -95
- data/lib/puppet/dsl/type_reference.rb +0 -102
- data/lib/puppet/util/manifest_filetype_helper.rb +0 -22
- data/spec/integration/dsl/classes_spec.rb +0 -191
- data/spec/integration/dsl/defaults_spec.rb +0 -38
- data/spec/integration/dsl/definitions_spec.rb +0 -73
- data/spec/integration/dsl/functions_spec.rb +0 -95
- data/spec/integration/dsl/nodes_spec.rb +0 -96
- data/spec/integration/dsl/params_spec.rb +0 -146
- data/spec/integration/dsl/relationships_spec.rb +0 -46
- data/spec/integration/dsl/resources_spec.rb +0 -202
- data/spec/integration/dsl/type_loading_spec.rb +0 -64
- data/spec/lib/matchers/catalog.rb +0 -50
- data/spec/lib/puppet_spec/dsl.rb +0 -29
- data/spec/unit/dsl/actions_spec.rb +0 -402
- data/spec/unit/dsl/blank_slate_spec.rb +0 -27
- data/spec/unit/dsl/context_spec.rb +0 -678
- data/spec/unit/dsl/parser_spec.rb +0 -56
- data/spec/unit/dsl/resource_decorator_spec.rb +0 -94
- data/spec/unit/dsl/resource_reference_spec.rb +0 -150
- data/spec/unit/dsl/type_reference_spec.rb +0 -164
- data/spec/unit/util/manifest_filetype_helper_spec.rb +0 -29
@@ -0,0 +1,23 @@
|
|
1
|
+
.\" generated with Ronn/v0.7.3
|
2
|
+
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
|
+
.
|
4
|
+
.TH "EXTLOOKUP2HIERA" "8" "January 2013" "Puppet Labs, LLC" "Puppet manual"
|
5
|
+
.
|
6
|
+
.SH "NAME"
|
7
|
+
\fBextlookup2hiera\fR
|
8
|
+
.
|
9
|
+
.P
|
10
|
+
Converter for extlookup CSV files into Hiera JSON and YAML files
|
11
|
+
.
|
12
|
+
.IP "" 4
|
13
|
+
.
|
14
|
+
.nf
|
15
|
+
|
16
|
+
\-i, \-\-in FILE Input CSV file
|
17
|
+
\-o, \-\-out FILE Output Hiera file
|
18
|
+
\-j, \-\-json Create JSON format file
|
19
|
+
.
|
20
|
+
.fi
|
21
|
+
.
|
22
|
+
.IP "" 0
|
23
|
+
|
data/man/man8/puppet-agent.8
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "PUPPET\-AGENT" "8" "
|
4
|
+
.TH "PUPPET\-AGENT" "8" "January 2013" "Puppet Labs, LLC" "Puppet manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBpuppet\-agent\fR \- The puppet agent daemon
|
@@ -61,7 +61,7 @@ Provide transaction information via exit codes\. If this is enabled, an exit cod
|
|
61
61
|
.
|
62
62
|
.TP
|
63
63
|
\-\-digest
|
64
|
-
Change the certificate fingerprinting digest algorithm\. The default is
|
64
|
+
Change the certificate fingerprinting digest algorithm\. The default is SHA256\. Valid values depends on the version of OpenSSL installed, but will likely contain MD5, MD2, SHA1 and SHA256\.
|
65
65
|
.
|
66
66
|
.TP
|
67
67
|
\-\-disable
|
@@ -97,7 +97,7 @@ Where to send messages\. Choose between syslog, the console, and a log file\. De
|
|
97
97
|
.
|
98
98
|
.TP
|
99
99
|
\-\-no\-client
|
100
|
-
Do not create a config client\. This will cause the daemon to
|
100
|
+
Do not create a config client\. This will cause the daemon to start but not check configuration unless it is triggered with \fBpuppet kick\fR\. This only makes sense when puppet agent is being run with listen = true in puppet\.conf or was started with the \fB\-\-listen\fR option\.
|
101
101
|
.
|
102
102
|
.TP
|
103
103
|
\-\-noop
|
data/man/man8/puppet-apply.8
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "PUPPET\-APPLY" "8" "
|
4
|
+
.TH "PUPPET\-APPLY" "8" "January 2013" "Puppet Labs, LLC" "Puppet manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBpuppet\-apply\fR \- Apply Puppet manifests locally
|
@@ -10,7 +10,7 @@
|
|
10
10
|
Applies a standalone Puppet manifest to the local system\.
|
11
11
|
.
|
12
12
|
.SH "USAGE"
|
13
|
-
puppet apply [\-h|\-\-help] [\-V|\-\-version] [\-d|\-\-debug] [\-v|\-\-verbose] [\-e|\-\-execute] [\-\-detailed\-exitcodes] [\-l|\-\-logdest \fIfile\fR] [\-\-noop] [\-\-
|
13
|
+
puppet apply [\-h|\-\-help] [\-V|\-\-version] [\-d|\-\-debug] [\-v|\-\-verbose] [\-e|\-\-execute] [\-\-detailed\-exitcodes] [\-l|\-\-logdest \fIfile\fR] [\-\-noop] [\-\-catalog \fIcatalog\fR] \fIfile\fR
|
14
14
|
.
|
15
15
|
.SH "DESCRIPTION"
|
16
16
|
This is the standalone puppet execution tool; use it to apply individual manifests\.
|
@@ -60,10 +60,6 @@ Execute a specific piece of Puppet code
|
|
60
60
|
Print extra information\.
|
61
61
|
.
|
62
62
|
.TP
|
63
|
-
\-\-apply
|
64
|
-
Apply a JSON catalog (such as one generated with \'puppet master \-\-compile\')\. You can either specify a JSON file or pipe in JSON from standard input\. Deprecated, please use \-\-catalog instead\.
|
65
|
-
.
|
66
|
-
.TP
|
67
63
|
\-\-catalog
|
68
64
|
Apply a JSON catalog (such as one generated with \'puppet master \-\-compile\')\. You can either specify a JSON file or pipe in JSON from standard input\.
|
69
65
|
.
|
data/man/man8/puppet-ca.8
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "PUPPET\-CA" "8" "
|
4
|
+
.TH "PUPPET\-CA" "8" "January 2013" "Puppet Labs, LLC" "Puppet manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBpuppet\-ca\fR \- Local Puppet Certificate Authority management\.
|
@@ -16,16 +16,12 @@ This provides local management of the Puppet Certificate Authority\.
|
|
16
16
|
You can use this subcommand to sign outstanding certificate requests, list and manage local certificates, and inspect the state of the CA\.
|
17
17
|
.
|
18
18
|
.SH "OPTIONS"
|
19
|
-
Note that any configuration parameter 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
|
19
|
+
Note that any configuration parameter 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 configuration parameters, so you can specify \fB\-\-server <servername>\fR, or \fB\-\-run_mode <runmode>\fR as an argument\.
|
20
20
|
.
|
21
21
|
.P
|
22
22
|
See the configuration file documentation at \fIhttp://docs\.puppetlabs\.com/references/stable/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\.
|
23
23
|
.
|
24
24
|
.TP
|
25
|
-
\-\-mode MODE
|
26
|
-
The run mode to use for the current action\. Valid modes are \fBuser\fR, \fBagent\fR, and \fBmaster\fR\.
|
27
|
-
.
|
28
|
-
.TP
|
29
25
|
\-\-render\-as FORMAT
|
30
26
|
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\.
|
31
27
|
.
|
@@ -89,7 +85,7 @@ Undocumented action\.
|
|
89
85
|
\fBSYNOPSIS\fR
|
90
86
|
.
|
91
87
|
.IP
|
92
|
-
puppet ca list [\-\-[no\-]all] [\-\-[no\-]pending] [\-\-[no\-]signed] [\-\-subject PATTERN]
|
88
|
+
puppet ca list [\-\-[no\-]all] [\-\-[no\-]pending] [\-\-[no\-]signed] [\-\-digest ALGORITHM] [\-\-subject PATTERN]
|
93
89
|
.
|
94
90
|
.IP
|
95
91
|
\fBDESCRIPTION\fR
|
@@ -101,6 +97,9 @@ This will list the current certificates and certificate signing requests in the
|
|
101
97
|
\fBOPTIONS\fR \fI\-\-[no\-]all\fR \- Include all certificates and requests\.
|
102
98
|
.
|
103
99
|
.IP
|
100
|
+
\fI\-\-digest ALGORITHM\fR \- The hash algorithm to use when displaying the fingerprint
|
101
|
+
.
|
102
|
+
.IP
|
104
103
|
\fI\-\-[no\-]pending\fR \- Include pending certificate signing requests\.
|
105
104
|
.
|
106
105
|
.IP
|
data/man/man8/puppet-catalog.8
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "PUPPET\-CATALOG" "8" "
|
4
|
+
.TH "PUPPET\-CATALOG" "8" "January 2013" "Puppet Labs, LLC" "Puppet manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBpuppet\-catalog\fR \- Compile, save, view, and convert catalogs\.
|
@@ -13,16 +13,12 @@ puppet catalog \fIaction\fR [\-\-terminus TERMINUS] [\-\-extra HASH]
|
|
13
13
|
This subcommand deals with catalogs, which are compiled per\-node artifacts generated from a set of Puppet manifests\. By default, it interacts with the compiling subsystem and compiles a catalog using the default manifest and \fBcertname\fR, but you can change the source of the catalog with the \fB\-\-terminus\fR option\. You can also choose to print any catalog in \'dot\' format (for easy graph viewing with OmniGraffle or Graphviz) with \'\-\-render\-as dot\'\.
|
14
14
|
.
|
15
15
|
.SH "OPTIONS"
|
16
|
-
Note that any configuration parameter 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
|
16
|
+
Note that any configuration parameter 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 configuration parameters, so you can specify \fB\-\-server <servername>\fR, or \fB\-\-run_mode <runmode>\fR as an argument\.
|
17
17
|
.
|
18
18
|
.P
|
19
19
|
See the configuration file documentation at \fIhttp://docs\.puppetlabs\.com/references/stable/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\.
|
20
20
|
.
|
21
21
|
.TP
|
22
|
-
\-\-mode MODE
|
23
|
-
The run mode to use for the current action\. Valid modes are \fBuser\fR, \fBagent\fR, and \fBmaster\fR\.
|
24
|
-
.
|
25
|
-
.TP
|
26
22
|
\-\-render\-as FORMAT
|
27
23
|
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\.
|
28
24
|
.
|
@@ -140,7 +136,7 @@ puppet catalog info [\-\-terminus TERMINUS] [\-\-extra HASH]
|
|
140
136
|
\fBDESCRIPTION\fR
|
141
137
|
.
|
142
138
|
.IP
|
143
|
-
Prints the default terminus class for this subcommand\. Note that different run modes may have different default termini; when in doubt, specify the run mode with the \'\-\-
|
139
|
+
Prints the default terminus class for this subcommand\. Note that different run modes may have different default termini; when in doubt, specify the run mode with the \'\-\-run_mode\' option\.
|
144
140
|
.
|
145
141
|
.TP
|
146
142
|
\fBsave\fR \- API only: create or overwrite an object\.
|
@@ -273,6 +269,9 @@ This subcommand is an indirector face, which exposes \fBfind\fR, \fBsearch\fR, \
|
|
273
269
|
\fBcompiler\fR
|
274
270
|
.
|
275
271
|
.IP "\(bu" 4
|
272
|
+
\fBjson\fR
|
273
|
+
.
|
274
|
+
.IP "\(bu" 4
|
276
275
|
\fBqueue\fR
|
277
276
|
.
|
278
277
|
.IP "\(bu" 4
|
data/man/man8/puppet-cert.8
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "PUPPET\-CERT" "8" "
|
4
|
+
.TH "PUPPET\-CERT" "8" "January 2013" "Puppet Labs, LLC" "Puppet manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBpuppet\-cert\fR \- Manage certificates and requests
|
@@ -24,7 +24,7 @@ Revoke a host\'s certificate (if applicable) and remove all files related to tha
|
|
24
24
|
.
|
25
25
|
.TP
|
26
26
|
fingerprint
|
27
|
-
Print the DIGEST (defaults to
|
27
|
+
Print the DIGEST (defaults to the signing algorithm) fingerprint of a host\'s certificate\.
|
28
28
|
.
|
29
29
|
.TP
|
30
30
|
generate
|
@@ -40,7 +40,7 @@ Print the full\-text version of a host\'s certificate\.
|
|
40
40
|
.
|
41
41
|
.TP
|
42
42
|
revoke
|
43
|
-
Revoke the certificate of a client\. The certificate can be specified either by its serial number (given as a
|
43
|
+
Revoke the certificate of a client\. The certificate can be specified either by its serial number (given as a hexadecimal number prefixed by \'0x\') or by its hostname\. The certificate is revoked by adding it to the Certificate Revocation List given by the \'cacrl\' configuration option\. Note that the puppet master needs to be restarted after revoking certificates\.
|
44
44
|
.
|
45
45
|
.TP
|
46
46
|
sign
|
@@ -62,7 +62,7 @@ Operate on all items\. Currently only makes sense with the \'sign\', \'clean\',
|
|
62
62
|
.
|
63
63
|
.TP
|
64
64
|
\-\-digest
|
65
|
-
Set the digest for fingerprinting (defaults to
|
65
|
+
Set the digest for fingerprinting (defaults to the the digest used when signing the cert)\. Valid values depends on your openssl and openssl ruby extension version\.
|
66
66
|
.
|
67
67
|
.TP
|
68
68
|
\-\-debug
|
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "PUPPET\-CERTIFICATE" "8" "
|
4
|
+
.TH "PUPPET\-CERTIFICATE" "8" "January 2013" "Puppet Labs, LLC" "Puppet manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBpuppet\-certificate\fR \- Provide access to the CA for certificate management\.
|
@@ -13,16 +13,12 @@ puppet certificate \fIaction\fR [\-\-terminus TERMINUS] [\-\-extra HASH] \fI\-\-
|
|
13
13
|
This subcommand interacts with a local or remote Puppet certificate authority\. Currently, its behavior is not a full superset of \fBpuppet cert\fR; specifically, it is unable to mimic puppet cert\'s "clean" option, and its "generate" action submits a CSR rather than creating a signed certificate\.
|
14
14
|
.
|
15
15
|
.SH "OPTIONS"
|
16
|
-
Note that any configuration parameter 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
|
16
|
+
Note that any configuration parameter 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 configuration parameters, so you can specify \fB\-\-server <servername>\fR, or \fB\-\-run_mode <runmode>\fR as an argument\.
|
17
17
|
.
|
18
18
|
.P
|
19
19
|
See the configuration file documentation at \fIhttp://docs\.puppetlabs\.com/references/stable/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\.
|
20
20
|
.
|
21
21
|
.TP
|
22
|
-
\-\-mode MODE
|
23
|
-
The run mode to use for the current action\. Valid modes are \fBuser\fR, \fBagent\fR, and \fBmaster\fR\.
|
24
|
-
.
|
25
|
-
.TP
|
26
22
|
\-\-render\-as FORMAT
|
27
23
|
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\.
|
28
24
|
.
|
@@ -134,7 +130,7 @@ puppet certificate info [\-\-terminus TERMINUS] [\-\-extra HASH] \fI\-\-ca\-loca
|
|
134
130
|
\fBDESCRIPTION\fR
|
135
131
|
.
|
136
132
|
.IP
|
137
|
-
Prints the default terminus class for this subcommand\. Note that different run modes may have different default termini; when in doubt, specify the run mode with the \'\-\-
|
133
|
+
Prints the default terminus class for this subcommand\. Note that different run modes may have different default termini; when in doubt, specify the run mode with the \'\-\-run_mode\' option\.
|
138
134
|
.
|
139
135
|
.TP
|
140
136
|
\fBlist\fR \- List all certificate signing requests\.
|
@@ -228,6 +224,9 @@ This subcommand is an indirector face, which exposes \fBfind\fR, \fBsearch\fR, \
|
|
228
224
|
\fBca\fR
|
229
225
|
.
|
230
226
|
.IP "\(bu" 4
|
227
|
+
\fBdisabled_ca\fR
|
228
|
+
.
|
229
|
+
.IP "\(bu" 4
|
231
230
|
\fBfile\fR
|
232
231
|
.
|
233
232
|
.IP "\(bu" 4
|
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "PUPPET\-CERTIFICATE_REQUEST" "8" "
|
4
|
+
.TH "PUPPET\-CERTIFICATE_REQUEST" "8" "January 2013" "Puppet Labs, LLC" "Puppet manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBpuppet\-certificate_request\fR \- Manage certificate requests\.
|
@@ -13,16 +13,12 @@ puppet certificate_request \fIaction\fR [\-\-terminus TERMINUS] [\-\-extra HASH]
|
|
13
13
|
This subcommand retrieves and submits certificate signing requests (CSRs)\.
|
14
14
|
.
|
15
15
|
.SH "OPTIONS"
|
16
|
-
Note that any configuration parameter 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
|
16
|
+
Note that any configuration parameter 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 configuration parameters, so you can specify \fB\-\-server <servername>\fR, or \fB\-\-run_mode <runmode>\fR as an argument\.
|
17
17
|
.
|
18
18
|
.P
|
19
19
|
See the configuration file documentation at \fIhttp://docs\.puppetlabs\.com/references/stable/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\.
|
20
20
|
.
|
21
21
|
.TP
|
22
|
-
\-\-mode MODE
|
23
|
-
The run mode to use for the current action\. Valid modes are \fBuser\fR, \fBagent\fR, and \fBmaster\fR\.
|
24
|
-
.
|
25
|
-
.TP
|
26
22
|
\-\-render\-as FORMAT
|
27
23
|
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\.
|
28
24
|
.
|
@@ -93,7 +89,7 @@ puppet certificate_request info [\-\-terminus TERMINUS] [\-\-extra HASH]
|
|
93
89
|
\fBDESCRIPTION\fR
|
94
90
|
.
|
95
91
|
.IP
|
96
|
-
Prints the default terminus class for this subcommand\. Note that different run modes may have different default termini; when in doubt, specify the run mode with the \'\-\-
|
92
|
+
Prints the default terminus class for this subcommand\. Note that different run modes may have different default termini; when in doubt, specify the run mode with the \'\-\-run_mode\' option\.
|
97
93
|
.
|
98
94
|
.TP
|
99
95
|
\fBsave\fR \- API only: submit a certificate signing request\.
|
@@ -158,6 +154,9 @@ This subcommand is an indirector face, which exposes \fBfind\fR, \fBsearch\fR, \
|
|
158
154
|
\fBca\fR
|
159
155
|
.
|
160
156
|
.IP "\(bu" 4
|
157
|
+
\fBdisabled_ca\fR
|
158
|
+
.
|
159
|
+
.IP "\(bu" 4
|
161
160
|
\fBfile\fR
|
162
161
|
.
|
163
162
|
.IP "\(bu" 4
|
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "PUPPET\-CERTIFICATE_REVOCATION_LIST" "8" "
|
4
|
+
.TH "PUPPET\-CERTIFICATE_REVOCATION_LIST" "8" "January 2013" "Puppet Labs, LLC" "Puppet manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBpuppet\-certificate_revocation_list\fR \- Manage the list of revoked certificates\.
|
@@ -13,16 +13,12 @@ puppet certificate_revocation_list \fIaction\fR [\-\-terminus TERMINUS] [\-\-ext
|
|
13
13
|
This subcommand is primarily for retrieving the certificate revocation list from the CA\.
|
14
14
|
.
|
15
15
|
.SH "OPTIONS"
|
16
|
-
Note that any configuration parameter 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
|
16
|
+
Note that any configuration parameter 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 configuration parameters, so you can specify \fB\-\-server <servername>\fR, or \fB\-\-run_mode <runmode>\fR as an argument\.
|
17
17
|
.
|
18
18
|
.P
|
19
19
|
See the configuration file documentation at \fIhttp://docs\.puppetlabs\.com/references/stable/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\.
|
20
20
|
.
|
21
21
|
.TP
|
22
|
-
\-\-mode MODE
|
23
|
-
The run mode to use for the current action\. Valid modes are \fBuser\fR, \fBagent\fR, and \fBmaster\fR\.
|
24
|
-
.
|
25
|
-
.TP
|
26
22
|
\-\-render\-as FORMAT
|
27
23
|
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\.
|
28
24
|
.
|
@@ -111,7 +107,7 @@ puppet certificate_revocation_list info [\-\-terminus TERMINUS] [\-\-extra HASH]
|
|
111
107
|
\fBDESCRIPTION\fR
|
112
108
|
.
|
113
109
|
.IP
|
114
|
-
Prints the default terminus class for this subcommand\. Note that different run modes may have different default termini; when in doubt, specify the run mode with the \'\-\-
|
110
|
+
Prints the default terminus class for this subcommand\. Note that different run modes may have different default termini; when in doubt, specify the run mode with the \'\-\-run_mode\' option\.
|
115
111
|
.
|
116
112
|
.TP
|
117
113
|
\fBsave\fR \- Invalid for this subcommand\.
|
@@ -155,6 +151,9 @@ This subcommand is an indirector face, which exposes \fBfind\fR, \fBsearch\fR, \
|
|
155
151
|
\fBca\fR
|
156
152
|
.
|
157
153
|
.IP "\(bu" 4
|
154
|
+
\fBdisabled_ca\fR
|
155
|
+
.
|
156
|
+
.IP "\(bu" 4
|
158
157
|
\fBfile\fR
|
159
158
|
.
|
160
159
|
.IP "\(bu" 4
|
data/man/man8/puppet-config.8
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "PUPPET\-CONFIG" "8" "
|
4
|
+
.TH "PUPPET\-CONFIG" "8" "January 2013" "Puppet Labs, LLC" "Puppet manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBpuppet\-config\fR \- Interact with Puppet\'s configuration options\.
|
@@ -10,16 +10,12 @@
|
|
10
10
|
puppet config \fIaction\fR
|
11
11
|
.
|
12
12
|
.SH "OPTIONS"
|
13
|
-
Note that any configuration parameter 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
|
13
|
+
Note that any configuration parameter 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 configuration parameters, so you can specify \fB\-\-server <servername>\fR, or \fB\-\-run_mode <runmode>\fR as an argument\.
|
14
14
|
.
|
15
15
|
.P
|
16
16
|
See the configuration file documentation at \fIhttp://docs\.puppetlabs\.com/references/stable/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\.
|
17
17
|
.
|
18
18
|
.TP
|
19
|
-
\-\-mode MODE
|
20
|
-
The run mode to use for the current action\. Valid modes are \fBuser\fR, \fBagent\fR, and \fBmaster\fR\.
|
21
|
-
.
|
22
|
-
.TP
|
23
19
|
\-\-render\-as FORMAT
|
24
20
|
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\.
|
25
21
|
.
|
@@ -59,7 +55,7 @@ A single value when called with one config setting, and a list of settings and v
|
|
59
55
|
\fBNOTES\fR
|
60
56
|
.
|
61
57
|
.IP
|
62
|
-
By default, this action reads the configuration in agent mode\. Use the \'\-\-
|
58
|
+
By default, this action reads the configuration in agent mode\. Use the \'\-\-run_mode\' and \'\-\-environment\' flags to examine other configuration domains\.
|
63
59
|
.
|
64
60
|
.SH "EXAMPLES"
|
65
61
|
\fBprint\fR
|
@@ -74,7 +70,7 @@ $ puppet config print rundir
|
|
74
70
|
Get a list of important directories from the master\'s config:
|
75
71
|
.
|
76
72
|
.P
|
77
|
-
$ puppet config print all \-\-
|
73
|
+
$ puppet config print all \-\-run_mode master | grep \-E "(path|dir)"
|
78
74
|
.
|
79
75
|
.SH "COPYRIGHT AND LICENSE"
|
80
76
|
Copyright 2011 by Puppet Labs Apache 2 license; see COPYING
|
data/man/man8/puppet-describe.8
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "PUPPET\-DESCRIBE" "8" "
|
4
|
+
.TH "PUPPET\-DESCRIBE" "8" "January 2013" "Puppet Labs, LLC" "Puppet manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBpuppet\-describe\fR \- Display help about resource types
|
data/man/man8/puppet-device.8
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "PUPPET\-DEVICE" "8" "
|
4
|
+
.TH "PUPPET\-DEVICE" "8" "January 2013" "Puppet Labs, LLC" "Puppet manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBpuppet\-device\fR \- Manage remote network devices
|
data/man/man8/puppet-doc.8
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "PUPPET\-DOC" "8" "
|
4
|
+
.TH "PUPPET\-DOC" "8" "January 2013" "Puppet Labs, LLC" "Puppet manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBpuppet\-doc\fR \- Generate Puppet documentation and references
|
@@ -43,7 +43,7 @@ Used only in \'rdoc\' mode\. The directory to which the rdoc output should be wr
|
|
43
43
|
.
|
44
44
|
.TP
|
45
45
|
\-\-mode
|
46
|
-
Determine the output mode\. Valid modes are \'text\', \'pdf\' and \'rdoc\'\. The \'pdf\' mode creates PDF formatted files in the /tmp directory\. The default mode is \'text\'\.
|
46
|
+
Determine the output mode\. Valid modes are \'text\', \'pdf\' and \'rdoc\'\. The \'pdf\' mode creates PDF formatted files in the /tmp directory\. The default mode is \'text\'\.
|
47
47
|
.
|
48
48
|
.TP
|
49
49
|
\-\-reference
|
@@ -63,7 +63,7 @@ Used only in \'rdoc\' mode\. The directory or directories to scan for modules\.
|
|
63
63
|
.
|
64
64
|
.TP
|
65
65
|
\-\-environment
|
66
|
-
Used only in \'rdoc\' mode\. The configuration environment from which to read the modulepath and manifestdir settings, when reading said settings from puppet\.conf\.
|
66
|
+
Used only in \'rdoc\' mode\. The configuration environment from which to read the modulepath and manifestdir settings, when reading said settings from puppet\.conf\.
|
67
67
|
.
|
68
68
|
.SH "EXAMPLE"
|
69
69
|
.
|
data/man/man8/puppet-facts.8
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "PUPPET\-FACTS" "8" "
|
4
|
+
.TH "PUPPET\-FACTS" "8" "January 2013" "Puppet Labs, LLC" "Puppet manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBpuppet\-facts\fR \- Retrieve and store facts\.
|
@@ -16,16 +16,12 @@ This subcommand manages facts, which are collections of normalized system inform
|
|
16
16
|
When used with the \fBrest\fR terminus, this subcommand is essentially a front\-end to the inventory service REST API\. See the inventory service documentation at \fIhttp://docs\.puppetlabs\.com/guides/inventory_service\.html\fR for more detail\.
|
17
17
|
.
|
18
18
|
.SH "OPTIONS"
|
19
|
-
Note that any configuration parameter 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
|
19
|
+
Note that any configuration parameter 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 configuration parameters, so you can specify \fB\-\-server <servername>\fR, or \fB\-\-run_mode <runmode>\fR as an argument\.
|
20
20
|
.
|
21
21
|
.P
|
22
22
|
See the configuration file documentation at \fIhttp://docs\.puppetlabs\.com/references/stable/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\.
|
23
23
|
.
|
24
24
|
.TP
|
25
|
-
\-\-mode MODE
|
26
|
-
The run mode to use for the current action\. Valid modes are \fBuser\fR, \fBagent\fR, and \fBmaster\fR\.
|
27
|
-
.
|
28
|
-
.TP
|
29
25
|
\-\-render\-as FORMAT
|
30
26
|
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\.
|
31
27
|
.
|
@@ -105,7 +101,7 @@ puppet facts info [\-\-terminus TERMINUS] [\-\-extra HASH]
|
|
105
101
|
\fBDESCRIPTION\fR
|
106
102
|
.
|
107
103
|
.IP
|
108
|
-
Prints the default terminus class for this subcommand\. Note that different run modes may have different default termini; when in doubt, specify the run mode with the \'\-\-
|
104
|
+
Prints the default terminus class for this subcommand\. Note that different run modes may have different default termini; when in doubt, specify the run mode with the \'\-\-run_mode\' option\.
|
109
105
|
.
|
110
106
|
.TP
|
111
107
|
\fBsave\fR \- API only: create or overwrite an object\.
|
@@ -177,7 +173,7 @@ $ puppet facts find somenode\.puppetlabs\.lan \-\-terminus rest
|
|
177
173
|
Query a DB\-backed inventory directly (bypassing the REST API):
|
178
174
|
.
|
179
175
|
.P
|
180
|
-
$ puppet facts find somenode\.puppetlabs\.lan \-\-terminus inventory_active_record \-\-
|
176
|
+
$ puppet facts find somenode\.puppetlabs\.lan \-\-terminus inventory_active_record \-\-run_mode master
|
181
177
|
.
|
182
178
|
.P
|
183
179
|
\fBupload\fR
|