puppet 2.7.14 → 2.7.16
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/CHANGELOG +85 -0
- data/conf/redhat/puppet.spec +31 -4
- data/lib/puppet.rb +1 -1
- data/lib/puppet/defaults.rb +2 -3
- data/lib/puppet/face/module/install.rb +3 -3
- data/lib/puppet/face/module/search.rb +3 -3
- data/lib/puppet/indirector/face.rb +1 -1
- data/lib/puppet/network/http_pool.rb +17 -8
- data/lib/puppet/node/environment.rb +1 -3
- data/lib/puppet/parser/ast.rb +1 -1
- data/lib/puppet/parser/compiler.rb +2 -10
- data/lib/puppet/parser/functions/template.rb +2 -1
- data/lib/puppet/parser/lexer.rb +2 -2
- data/lib/puppet/parser/scope.rb +3 -2
- data/lib/puppet/provider/package/gem.rb +3 -1
- data/lib/puppet/provider/package/pkg.rb +18 -2
- data/lib/puppet/provider/service/gentoo.rb +5 -0
- data/lib/puppet/provider/service/init.rb +12 -14
- data/lib/puppet/provider/service/redhat.rb +1 -1
- data/lib/puppet/provider/service/upstart.rb +257 -7
- data/lib/puppet/provider/ssh_authorized_key/parsed.rb +6 -9
- data/lib/puppet/reports/http.rb +1 -1
- data/lib/puppet/reports/tagmail.rb +1 -1
- data/lib/puppet/type/cron.rb +5 -0
- data/lib/puppet/type/filebucket.rb +12 -0
- data/lib/puppet/util.rb +15 -9
- data/lib/puppet/util/colors.rb +94 -64
- data/lib/puppet/util/platform.rb +15 -0
- data/man/man5/puppet.conf.5 +73 -27
- data/man/man8/filebucket.8 +1 -1
- data/man/man8/pi.8 +1 -1
- data/man/man8/puppet-agent.8 +17 -17
- data/man/man8/puppet-apply.8 +8 -3
- data/man/man8/puppet-ca.8 +183 -0
- data/man/man8/puppet-catalog.8 +17 -10
- data/man/man8/puppet-cert.8 +1 -1
- data/man/man8/puppet-certificate.8 +27 -11
- data/man/man8/puppet-certificate_request.8 +12 -11
- data/man/man8/puppet-certificate_revocation_list.8 +11 -10
- data/man/man8/puppet-config.8 +1 -1
- data/man/man8/puppet-describe.8 +1 -1
- data/man/man8/puppet-device.8 +2 -2
- data/man/man8/puppet-doc.8 +15 -3
- data/man/man8/puppet-facts.8 +18 -8
- data/man/man8/puppet-file.8 +13 -22
- data/man/man8/puppet-filebucket.8 +1 -1
- data/man/man8/puppet-help.8 +1 -1
- data/man/man8/puppet-inspect.8 +10 -2
- data/man/man8/puppet-instrumentation_data.8 +145 -0
- data/man/man8/puppet-instrumentation_listener.8 +222 -0
- data/man/man8/puppet-instrumentation_probe.8 +207 -0
- data/man/man8/puppet-key.8 +11 -7
- data/man/man8/puppet-kick.8 +35 -3
- data/man/man8/puppet-man.8 +1 -1
- data/man/man8/puppet-master.8 +1 -1
- data/man/man8/puppet-module.8 +451 -0
- data/man/man8/puppet-node.8 +64 -22
- data/man/man8/puppet-parser.8 +1 -1
- data/man/man8/puppet-plugin.8 +1 -1
- data/man/man8/puppet-queue.8 +1 -1
- data/man/man8/puppet-report.8 +12 -8
- data/man/man8/puppet-resource.8 +1 -1
- data/man/man8/puppet-resource_type.8 +11 -7
- data/man/man8/puppet-secret_agent.8 +1 -1
- data/man/man8/puppet-status.8 +11 -7
- data/man/man8/puppet.8 +1 -1
- data/man/man8/puppetca.8 +1 -1
- data/man/man8/puppetd.8 +17 -17
- data/man/man8/puppetdoc.8 +15 -3
- data/man/man8/puppetmasterd.8 +1 -1
- data/man/man8/puppetqd.8 +1 -1
- data/man/man8/puppetrun.8 +35 -3
- data/man/man8/ralsh.8 +1 -1
- data/spec/fixtures/unit/provider/package/gem/line-with-1.8.5-warning +14 -0
- data/spec/fixtures/unit/provider/package/pkg/{dummy → dummy_solaris10} +0 -0
- data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11 +1 -0
- data/spec/fixtures/unit/provider/package/pkg/solaris11 +12 -0
- data/spec/fixtures/unit/provider/package/pkg/unknown_status +12 -0
- data/spec/fixtures/unit/provider/service/gentoo/rc_update_show +30 -0
- data/spec/integration/defaults_spec.rb +2 -7
- data/spec/integration/network/server/mongrel_spec.rb +16 -10
- data/spec/integration/network/server/webrick_spec.rb +16 -9
- data/spec/integration/provider/service/init_spec.rb +20 -4
- data/spec/integration/provider/ssh_authorized_key_spec.rb +119 -107
- data/spec/unit/face/module/install_spec.rb +16 -4
- data/spec/unit/network/http/api/v1_spec.rb +8 -0
- data/spec/unit/network/http_pool_spec.rb +80 -74
- data/spec/unit/node/environment_spec.rb +9 -4
- data/spec/unit/parser/ast/leaf_spec.rb +2 -2
- data/spec/unit/parser/ast_spec.rb +3 -3
- data/spec/unit/parser/compiler_spec.rb +0 -17
- data/spec/unit/parser/lexer_spec.rb +45 -2
- data/spec/unit/parser/scope_spec.rb +181 -14
- data/spec/unit/provider/package/gem_spec.rb +17 -1
- data/spec/unit/provider/package/pkg_spec.rb +70 -22
- data/spec/unit/provider/service/gentoo_spec.rb +237 -0
- data/spec/unit/provider/service/init_spec.rb +2 -2
- data/spec/unit/provider/service/redhat_spec.rb +2 -2
- data/spec/unit/provider/service/upstart_spec.rb +414 -5
- data/spec/unit/provider/ssh_authorized_key/parsed_spec.rb +24 -0
- data/spec/unit/reports/tagmail_spec.rb +50 -0
- data/spec/unit/type/cron_spec.rb +21 -1
- data/spec/unit/type/filebucket_spec.rb +39 -9
- data/spec/unit/util/colors_spec.rb +69 -0
- data/spec/unit/util/log/destinations_spec.rb +17 -9
- data/spec/unit/util/log_spec.rb +2 -1
- data/spec/unit/util_spec.rb +11 -0
- data/tasks/rake/gem.rake +1 -1
- data/tasks/rake/manpages.rake +11 -3
- data/test/network/handler/fileserver.rb +7 -1
- metadata +22 -10
data/man/man8/filebucket.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\-FILEBUCKET" "8" "June
|
4
|
+
.TH "PUPPET\-FILEBUCKET" "8" "June 2012" "Puppet Labs, LLC" "Puppet manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBpuppet\-filebucket\fR \- Store and retrieve files in a filebucket
|
data/man/man8/pi.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" "June
|
4
|
+
.TH "PUPPET\-DESCRIBE" "8" "June 2012" "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-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" "June
|
4
|
+
.TH "PUPPET\-AGENT" "8" "June 2012" "Puppet Labs, LLC" "Puppet manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBpuppet\-agent\fR \- The puppet agent daemon
|
@@ -13,7 +13,7 @@ Retrieves the client configuration from the puppet master and applies it to the
|
|
13
13
|
This service may be run as a daemon, run periodically using cron (or something similar), or run interactively for testing purposes\.
|
14
14
|
.
|
15
15
|
.SH "USAGE"
|
16
|
-
puppet agent [\-D|\-\-daemonize|\-\-no\-daemonize] [\-d|\-\-debug] [\-\-detailed\-exitcodes] [\-\-disable] [\-\-enable] [\-h|\-\-help] [
|
16
|
+
puppet agent [\-\-certname \fIname\fR] [\-D|\-\-daemonize|\-\-no\-daemonize] [\-d|\-\-debug] [\-\-detailed\-exitcodes] [\-\-digest \fIdigest\fR] [\-\-disable] [\-\-enable] [\-\-fingerprint] [\-h|\-\-help] [\-l|\-\-logdest syslog|\fIfile\fR|console] [\-\-no\-client] [\-\-noop] [\-o|\-\-onetime] [\-\-serve \fIhandler\fR] [\-t|\-\-test] [\-v|\-\-verbose] [\-V|\-\-version] [\-w|\-\-waitforcert \fIseconds\fR]
|
17
17
|
.
|
18
18
|
.SH "DESCRIPTION"
|
19
19
|
This is the main puppet client\. Its job is to retrieve the local machine\'s configuration from a remote server and apply it\. In order to successfully communicate with the remote server, the client must have a certificate signed by a certificate authority that the server trusts; the recommended method for this, at the moment, is to run a certificate authority as part of the puppet server (which is the default)\. The client will connect and request a signed certificate, and will continue connecting until it receives one\.
|
@@ -40,6 +40,10 @@ Note that any configuration parameter that\'s valid in the configuration file is
|
|
40
40
|
See the configuration file documentation at http://docs\.puppetlabs\.com/references/stable/configuration\.html for the full list of acceptable parameters\. A commented list of all configuration options can also be generated by running puppet agent with \'\-\-genconfig\'\.
|
41
41
|
.
|
42
42
|
.TP
|
43
|
+
\-\-certname
|
44
|
+
Set the certname (unique ID) of the client\. The master reads this unique identifying string, which is usually set to the node\'s fully\-qualified domain name, to determine which configurations the node will receive\. Use this option to debug setup problems or implement unusual node identification schemes\.
|
45
|
+
.
|
46
|
+
.TP
|
43
47
|
\-\-daemonize
|
44
48
|
Send the process into the background\. This is the default\.
|
45
49
|
.
|
@@ -52,12 +56,12 @@ Do not send the process into the background\.
|
|
52
56
|
Enable full debugging\.
|
53
57
|
.
|
54
58
|
.TP
|
55
|
-
\-\-
|
56
|
-
|
59
|
+
\-\-detailed\-exitcodes
|
60
|
+
Provide transaction information via exit codes\. If this is enabled, an exit code of \'2\' means there were changes, an exit code of \'4\' means there were failures during the transaction, and an exit code of \'6\' means there were both changes and failures\.
|
57
61
|
.
|
58
62
|
.TP
|
59
|
-
\-\-
|
60
|
-
|
63
|
+
\-\-digest
|
64
|
+
Change the certificate fingerprinting digest algorithm\. The default is MD5\. Valid values depends on the version of OpenSSL installed, but should always at least contain MD5, MD2, SHA1 and SHA256\.
|
61
65
|
.
|
62
66
|
.TP
|
63
67
|
\-\-disable
|
@@ -77,8 +81,8 @@ Enable working on the local system\. This removes any lock file, causing \'puppe
|
|
77
81
|
\'puppet agent\' exits after executing this\.
|
78
82
|
.
|
79
83
|
.TP
|
80
|
-
\-\-
|
81
|
-
|
84
|
+
\-\-fingerprint
|
85
|
+
Display the current certificate or certificate signing request fingerprint and then exit\. Use the \'\-\-digest\' option to change the digest algorithm used\.
|
82
86
|
.
|
83
87
|
.TP
|
84
88
|
\-\-help
|
@@ -90,15 +94,15 @@ Where to send messages\. Choose between syslog, the console, and a log file\. De
|
|
90
94
|
.
|
91
95
|
.TP
|
92
96
|
\-\-no\-client
|
93
|
-
Do not create a config client\. This will cause the daemon to run without ever checking for its configuration automatically, and only makes sense
|
97
|
+
Do not create a config client\. This will cause the daemon to run without ever checking for its configuration automatically, and only makes sense when puppet agent is being run with listen = true in puppet\.conf or was started with the \fB\-\-listen\fR option\.
|
94
98
|
.
|
95
99
|
.TP
|
96
|
-
\-\-
|
97
|
-
|
100
|
+
\-\-noop
|
101
|
+
Use \'noop\' mode where the daemon runs in a no\-op or dry\-run mode\. This is useful for seeing what changes Puppet will make without actually executing the changes\.
|
98
102
|
.
|
99
103
|
.TP
|
100
|
-
\-\-
|
101
|
-
|
104
|
+
\-\-onetime
|
105
|
+
Run the configuration once\. Runs a single (normally daemonized) Puppet run\. Useful for interactively running puppet agent when used in conjunction with the \-\-no\-daemonize option\.
|
102
106
|
.
|
103
107
|
.TP
|
104
108
|
\-\-serve
|
@@ -109,10 +113,6 @@ Start another type of server\. By default, \'puppet agent\' will start a service
|
|
109
113
|
Enable the most common options used for testing\. These are \'onetime\', \'verbose\', \'ignorecache\', \'no\-daemonize\', \'no\-usecacheonfailure\', \'detailed\-exit\-codes\', \'no\-splay\', and \'show_diff\'\.
|
110
114
|
.
|
111
115
|
.TP
|
112
|
-
\-\-noop
|
113
|
-
Use \'noop\' mode where the daemon runs in a no\-op or dry\-run mode\. This is useful for seeing what changes Puppet will make without actually executing the changes\.
|
114
|
-
.
|
115
|
-
.TP
|
116
116
|
\-\-verbose
|
117
117
|
Turn on verbose reporting\.
|
118
118
|
.
|
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" "June
|
4
|
+
.TH "PUPPET\-APPLY" "8" "June 2012" "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] [\-\-apply \fIcatalog\fR] \fIfile\fR
|
13
|
+
puppet apply [\-h|\-\-help] [\-V|\-\-version] [\-d|\-\-debug] [\-v|\-\-verbose] [\-e|\-\-execute] [\-\-detailed\-exitcodes] [\-l|\-\-logdest \fIfile\fR] [\-\-apply \fIcatalog\fR] [\-\-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\.
|
@@ -33,7 +33,7 @@ Enable full debugging\.
|
|
33
33
|
.
|
34
34
|
.TP
|
35
35
|
\-\-detailed\-exitcodes
|
36
|
-
Provide transaction information via exit codes\. If this is enabled, an exit code of \'2\' means there were changes,
|
36
|
+
Provide transaction information via exit codes\. If this is enabled, an exit code of \'2\' means there were changes, an exit code of \'4\' means there were failures during the transaction, and an exit code of \'6\' means there were both changes and failures\.
|
37
37
|
.
|
38
38
|
.TP
|
39
39
|
\-\-help
|
@@ -57,6 +57,10 @@ Print extra information\.
|
|
57
57
|
.
|
58
58
|
.TP
|
59
59
|
\-\-apply
|
60
|
+
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\.
|
61
|
+
.
|
62
|
+
.TP
|
63
|
+
\-\-catalog
|
60
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\.
|
61
65
|
.
|
62
66
|
.SH "EXAMPLE"
|
@@ -65,6 +69,7 @@ Apply a JSON catalog (such as one generated with \'puppet master \-\-compile\')\
|
|
65
69
|
|
66
70
|
$ puppet apply \-l /tmp/manifest\.log manifest\.pp
|
67
71
|
$ puppet apply \-\-modulepath=/root/dev/modules \-e "include ntpd::server"
|
72
|
+
$ puppet apply \-\-catalog catalog\.json
|
68
73
|
.
|
69
74
|
.fi
|
70
75
|
.
|
@@ -0,0 +1,183 @@
|
|
1
|
+
.\" generated with Ronn/v0.7.3
|
2
|
+
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
|
+
.
|
4
|
+
.TH "PUPPET\-CA" "8" "June 2012" "Puppet Labs, LLC" "Puppet manual"
|
5
|
+
.
|
6
|
+
.SH "NAME"
|
7
|
+
\fBpuppet\-ca\fR \- Local Puppet Certificate Authority management\.
|
8
|
+
.
|
9
|
+
.SH "SYNOPSIS"
|
10
|
+
puppet ca \fIaction\fR
|
11
|
+
.
|
12
|
+
.SH "DESCRIPTION"
|
13
|
+
This provides local management of the Puppet Certificate Authority\.
|
14
|
+
.
|
15
|
+
.P
|
16
|
+
You can use this subcommand to sign outstanding certificate requests, list and manage local certificates, and inspect the state of the CA\.
|
17
|
+
.
|
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 is a valid configuration parameter, so you can specify \fB\-\-server <servername>\fR as an argument\.
|
20
|
+
.
|
21
|
+
.P
|
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
|
+
.
|
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
|
+
\-\-render\-as FORMAT
|
30
|
+
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
|
+
.
|
32
|
+
.TP
|
33
|
+
\-\-verbose
|
34
|
+
Whether to log verbosely\.
|
35
|
+
.
|
36
|
+
.TP
|
37
|
+
\-\-debug
|
38
|
+
Whether to log debug information\.
|
39
|
+
.
|
40
|
+
.SH "ACTIONS"
|
41
|
+
.
|
42
|
+
.TP
|
43
|
+
\fBdestroy\fR \-
|
44
|
+
\fBSYNOPSIS\fR
|
45
|
+
.
|
46
|
+
.IP
|
47
|
+
puppet ca destroy
|
48
|
+
.
|
49
|
+
.IP
|
50
|
+
\fBDESCRIPTION\fR
|
51
|
+
.
|
52
|
+
.IP
|
53
|
+
Undocumented action\.
|
54
|
+
.
|
55
|
+
.TP
|
56
|
+
\fBfingerprint\fR \-
|
57
|
+
\fBSYNOPSIS\fR
|
58
|
+
.
|
59
|
+
.IP
|
60
|
+
puppet ca fingerprint [\-\-digest ALGORITHM]
|
61
|
+
.
|
62
|
+
.IP
|
63
|
+
\fBDESCRIPTION\fR
|
64
|
+
.
|
65
|
+
.IP
|
66
|
+
Undocumented action\.
|
67
|
+
.
|
68
|
+
.IP
|
69
|
+
\fBOPTIONS\fR
|
70
|
+
.
|
71
|
+
.IP
|
72
|
+
\fI\-\-digest ALGORITHM\fR \- The hash algorithm to use when displaying the fingerprint
|
73
|
+
.
|
74
|
+
.TP
|
75
|
+
\fBgenerate\fR \-
|
76
|
+
\fBSYNOPSIS\fR
|
77
|
+
.
|
78
|
+
.IP
|
79
|
+
puppet ca generate [\-\-dns\-alt\-names NAMES]
|
80
|
+
.
|
81
|
+
.IP
|
82
|
+
\fBDESCRIPTION\fR
|
83
|
+
.
|
84
|
+
.IP
|
85
|
+
Undocumented action\.
|
86
|
+
.
|
87
|
+
.IP
|
88
|
+
\fBOPTIONS\fR
|
89
|
+
.
|
90
|
+
.IP
|
91
|
+
\fI\-\-dns\-alt\-names NAMES\fR \- The comma\-separated list of alternative DNS names to use for the local host\. When the node generates a CSR for itself, these are added to the request as the desired \fBsubjectAltName\fR in the certificate: additional DNS labels that the certificate is also valid answering as\. This is generally required if you use a non\-hostname \fBcertname\fR, or if you want to use \fBpuppet kick\fR or \fBpuppet resource \-H\fR and the primary certname does not match the DNS name you use to communicate with the host\. This is unnecessary for agents, unless you intend to use them as a server for \fBpuppet kick\fR or remote \fBpuppet resource\fR management\. It is rarely necessary for servers; it is usually helpful only if you need to have a pool of multiple load balanced masters, or for the same master to respond on two physically separate networks under different names\.
|
92
|
+
.
|
93
|
+
.TP
|
94
|
+
\fBlist\fR \- List certificates and/or certificate requests\.
|
95
|
+
\fBSYNOPSIS\fR
|
96
|
+
.
|
97
|
+
.IP
|
98
|
+
puppet ca list [\-\-[no\-]all] [\-\-[no\-]pending] [\-\-[no\-]signed] [\-\-subject PATTERN]
|
99
|
+
.
|
100
|
+
.IP
|
101
|
+
\fBDESCRIPTION\fR
|
102
|
+
.
|
103
|
+
.IP
|
104
|
+
This will list the current certificates and certificate signing requests in the Puppet CA\. You will also get the fingerprint, and any certificate verification failure reported\.
|
105
|
+
.
|
106
|
+
.IP
|
107
|
+
\fBOPTIONS\fR
|
108
|
+
.
|
109
|
+
.IP
|
110
|
+
\fI\-\-[no\-]all\fR \- Include all certificates and requests\.
|
111
|
+
.
|
112
|
+
.IP
|
113
|
+
\fI\-\-[no\-]pending\fR \- Include pending certificate signing requests\.
|
114
|
+
.
|
115
|
+
.IP
|
116
|
+
\fI\-\-[no\-]signed\fR \- Include signed certificates\.
|
117
|
+
.
|
118
|
+
.IP
|
119
|
+
\fI\-\-subject PATTERN\fR \- Only include certificates or requests where subject matches PATTERN\.
|
120
|
+
.
|
121
|
+
.IP
|
122
|
+
PATTERN is interpreted as a regular expression, allowing complex filtering of the content\.
|
123
|
+
.
|
124
|
+
.TP
|
125
|
+
\fBprint\fR \-
|
126
|
+
\fBSYNOPSIS\fR
|
127
|
+
.
|
128
|
+
.IP
|
129
|
+
puppet ca print
|
130
|
+
.
|
131
|
+
.IP
|
132
|
+
\fBDESCRIPTION\fR
|
133
|
+
.
|
134
|
+
.IP
|
135
|
+
Undocumented action\.
|
136
|
+
.
|
137
|
+
.TP
|
138
|
+
\fBrevoke\fR \-
|
139
|
+
\fBSYNOPSIS\fR
|
140
|
+
.
|
141
|
+
.IP
|
142
|
+
puppet ca revoke
|
143
|
+
.
|
144
|
+
.IP
|
145
|
+
\fBDESCRIPTION\fR
|
146
|
+
.
|
147
|
+
.IP
|
148
|
+
Undocumented action\.
|
149
|
+
.
|
150
|
+
.TP
|
151
|
+
\fBsign\fR \-
|
152
|
+
\fBSYNOPSIS\fR
|
153
|
+
.
|
154
|
+
.IP
|
155
|
+
puppet ca sign [\-\-[no\-]allow\-dns\-alt\-names]
|
156
|
+
.
|
157
|
+
.IP
|
158
|
+
\fBDESCRIPTION\fR
|
159
|
+
.
|
160
|
+
.IP
|
161
|
+
Undocumented action\.
|
162
|
+
.
|
163
|
+
.IP
|
164
|
+
\fBOPTIONS\fR
|
165
|
+
.
|
166
|
+
.IP
|
167
|
+
\fI\-\-[no\-]allow\-dns\-alt\-names\fR \- Whether or not to accept DNS alt names in the certificate request
|
168
|
+
.
|
169
|
+
.TP
|
170
|
+
\fBverify\fR \-
|
171
|
+
\fBSYNOPSIS\fR
|
172
|
+
.
|
173
|
+
.IP
|
174
|
+
puppet ca verify
|
175
|
+
.
|
176
|
+
.IP
|
177
|
+
\fBDESCRIPTION\fR
|
178
|
+
.
|
179
|
+
.IP
|
180
|
+
Undocumented action\.
|
181
|
+
.
|
182
|
+
.SH "COPYRIGHT AND LICENSE"
|
183
|
+
Copyright 2011 by Puppet Labs Apache 2 license; see COPYING
|
data/man/man8/puppet-catalog.8
CHANGED
@@ -1,13 +1,13 @@
|
|
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" "June
|
4
|
+
.TH "PUPPET\-CATALOG" "8" "June 2012" "Puppet Labs, LLC" "Puppet manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBpuppet\-catalog\fR \- Compile, save, view, and convert catalogs\.
|
8
8
|
.
|
9
9
|
.SH "SYNOPSIS"
|
10
|
-
puppet catalog \fIaction\fR [\-\-terminus TERMINUS]
|
10
|
+
puppet catalog \fIaction\fR [\-\-terminus TERMINUS] [\-\-extra HASH]
|
11
11
|
.
|
12
12
|
.SH "DESCRIPTION"
|
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\'\.
|
@@ -35,6 +35,10 @@ Whether to log verbosely\.
|
|
35
35
|
Whether to log debug information\.
|
36
36
|
.
|
37
37
|
.TP
|
38
|
+
\-\-extra HASH
|
39
|
+
A terminus can take additional arguments to refine the operation, which are passed as an arbitrary hash to the back\-end\. Anything passed as the extra value is just send direct to the back\-end\.
|
40
|
+
.
|
41
|
+
.TP
|
38
42
|
\-\-terminus TERMINUS
|
39
43
|
Indirector faces expose indirected subsystems of Puppet\. These subsystems are each able to retrieve and alter a specific type of data (with the familiar actions of \fBfind\fR, \fBsearch\fR, \fBsave\fR, and \fBdestroy\fR) from an arbitrary number of pluggable backends\. In Puppet parlance, these backends are called terminuses\.
|
40
44
|
.
|
@@ -51,7 +55,7 @@ The terminus for an action is often determined by context, but occasionally need
|
|
51
55
|
\fBSYNOPSIS\fR
|
52
56
|
.
|
53
57
|
.IP
|
54
|
-
puppet catalog apply [\-\-terminus TERMINUS]
|
58
|
+
puppet catalog apply [\-\-terminus TERMINUS] [\-\-extra HASH]
|
55
59
|
.
|
56
60
|
.IP
|
57
61
|
\fBDESCRIPTION\fR
|
@@ -70,7 +74,7 @@ Nothing\. When used from the Ruby API, returns a Puppet::Transaction::Report obj
|
|
70
74
|
\fBSYNOPSIS\fR
|
71
75
|
.
|
72
76
|
.IP
|
73
|
-
puppet catalog destroy [\-\-terminus TERMINUS] \fIkey\fR
|
77
|
+
puppet catalog destroy [\-\-terminus TERMINUS] [\-\-extra HASH] \fIkey\fR
|
74
78
|
.
|
75
79
|
.IP
|
76
80
|
\fBDESCRIPTION\fR
|
@@ -83,7 +87,7 @@ Invalid for this subcommand\.
|
|
83
87
|
\fBSYNOPSIS\fR
|
84
88
|
.
|
85
89
|
.IP
|
86
|
-
puppet catalog download [\-\-terminus TERMINUS]
|
90
|
+
puppet catalog download [\-\-terminus TERMINUS] [\-\-extra HASH]
|
87
91
|
.
|
88
92
|
.IP
|
89
93
|
\fBDESCRIPTION\fR
|
@@ -111,7 +115,7 @@ When used from the Ruby API, this action has a side effect of leaving Puppet::Re
|
|
111
115
|
\fBSYNOPSIS\fR
|
112
116
|
.
|
113
117
|
.IP
|
114
|
-
puppet catalog find [\-\-terminus TERMINUS] \fIcertname\fR
|
118
|
+
puppet catalog find [\-\-terminus TERMINUS] [\-\-extra HASH] \fIcertname\fR
|
115
119
|
.
|
116
120
|
.IP
|
117
121
|
\fBDESCRIPTION\fR
|
@@ -130,7 +134,7 @@ A serialized catalog\. When used from the Ruby API, returns a Puppet::Resource::
|
|
130
134
|
\fBSYNOPSIS\fR
|
131
135
|
.
|
132
136
|
.IP
|
133
|
-
puppet catalog info [\-\-terminus TERMINUS]
|
137
|
+
puppet catalog info [\-\-terminus TERMINUS] [\-\-extra HASH]
|
134
138
|
.
|
135
139
|
.IP
|
136
140
|
\fBDESCRIPTION\fR
|
@@ -143,7 +147,7 @@ Prints the default terminus class for this subcommand\. Note that different run
|
|
143
147
|
\fBSYNOPSIS\fR
|
144
148
|
.
|
145
149
|
.IP
|
146
|
-
puppet catalog save [\-\-terminus TERMINUS]
|
150
|
+
puppet catalog save [\-\-terminus TERMINUS] [\-\-extra HASH] \fIkey\fR
|
147
151
|
.
|
148
152
|
.IP
|
149
153
|
\fBDESCRIPTION\fR
|
@@ -156,7 +160,7 @@ API only: create or overwrite an object\. As the Faces framework does not curren
|
|
156
160
|
\fBSYNOPSIS\fR
|
157
161
|
.
|
158
162
|
.IP
|
159
|
-
puppet catalog search [\-\-terminus TERMINUS] \fIquery\fR
|
163
|
+
puppet catalog search [\-\-terminus TERMINUS] [\-\-extra HASH] \fIquery\fR
|
160
164
|
.
|
161
165
|
.IP
|
162
166
|
\fBDESCRIPTION\fR
|
@@ -169,7 +173,7 @@ Invalid for this subcommand\.
|
|
169
173
|
\fBSYNOPSIS\fR
|
170
174
|
.
|
171
175
|
.IP
|
172
|
-
puppet catalog select [\-\-terminus TERMINUS] \fIhost\fR \fIresource_type\fR
|
176
|
+
puppet catalog select [\-\-terminus TERMINUS] [\-\-extra HASH] \fIhost\fR \fIresource_type\fR
|
173
177
|
.
|
174
178
|
.IP
|
175
179
|
\fBDESCRIPTION\fR
|
@@ -278,6 +282,9 @@ This subcommand is an indirector face, which exposes \fBfind\fR, \fBsearch\fR, \
|
|
278
282
|
\fBstatic_compiler\fR
|
279
283
|
.
|
280
284
|
.IP "\(bu" 4
|
285
|
+
\fBstore_configs\fR
|
286
|
+
.
|
287
|
+
.IP "\(bu" 4
|
281
288
|
\fByaml\fR
|
282
289
|
.
|
283
290
|
.IP "" 0
|
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" "June
|
4
|
+
.TH "PUPPET\-CERT" "8" "June 2012" "Puppet Labs, LLC" "Puppet manual"
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBpuppet\-cert\fR \- Manage certificates and requests
|