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.

Files changed (111) hide show
  1. data/CHANGELOG +85 -0
  2. data/conf/redhat/puppet.spec +31 -4
  3. data/lib/puppet.rb +1 -1
  4. data/lib/puppet/defaults.rb +2 -3
  5. data/lib/puppet/face/module/install.rb +3 -3
  6. data/lib/puppet/face/module/search.rb +3 -3
  7. data/lib/puppet/indirector/face.rb +1 -1
  8. data/lib/puppet/network/http_pool.rb +17 -8
  9. data/lib/puppet/node/environment.rb +1 -3
  10. data/lib/puppet/parser/ast.rb +1 -1
  11. data/lib/puppet/parser/compiler.rb +2 -10
  12. data/lib/puppet/parser/functions/template.rb +2 -1
  13. data/lib/puppet/parser/lexer.rb +2 -2
  14. data/lib/puppet/parser/scope.rb +3 -2
  15. data/lib/puppet/provider/package/gem.rb +3 -1
  16. data/lib/puppet/provider/package/pkg.rb +18 -2
  17. data/lib/puppet/provider/service/gentoo.rb +5 -0
  18. data/lib/puppet/provider/service/init.rb +12 -14
  19. data/lib/puppet/provider/service/redhat.rb +1 -1
  20. data/lib/puppet/provider/service/upstart.rb +257 -7
  21. data/lib/puppet/provider/ssh_authorized_key/parsed.rb +6 -9
  22. data/lib/puppet/reports/http.rb +1 -1
  23. data/lib/puppet/reports/tagmail.rb +1 -1
  24. data/lib/puppet/type/cron.rb +5 -0
  25. data/lib/puppet/type/filebucket.rb +12 -0
  26. data/lib/puppet/util.rb +15 -9
  27. data/lib/puppet/util/colors.rb +94 -64
  28. data/lib/puppet/util/platform.rb +15 -0
  29. data/man/man5/puppet.conf.5 +73 -27
  30. data/man/man8/filebucket.8 +1 -1
  31. data/man/man8/pi.8 +1 -1
  32. data/man/man8/puppet-agent.8 +17 -17
  33. data/man/man8/puppet-apply.8 +8 -3
  34. data/man/man8/puppet-ca.8 +183 -0
  35. data/man/man8/puppet-catalog.8 +17 -10
  36. data/man/man8/puppet-cert.8 +1 -1
  37. data/man/man8/puppet-certificate.8 +27 -11
  38. data/man/man8/puppet-certificate_request.8 +12 -11
  39. data/man/man8/puppet-certificate_revocation_list.8 +11 -10
  40. data/man/man8/puppet-config.8 +1 -1
  41. data/man/man8/puppet-describe.8 +1 -1
  42. data/man/man8/puppet-device.8 +2 -2
  43. data/man/man8/puppet-doc.8 +15 -3
  44. data/man/man8/puppet-facts.8 +18 -8
  45. data/man/man8/puppet-file.8 +13 -22
  46. data/man/man8/puppet-filebucket.8 +1 -1
  47. data/man/man8/puppet-help.8 +1 -1
  48. data/man/man8/puppet-inspect.8 +10 -2
  49. data/man/man8/puppet-instrumentation_data.8 +145 -0
  50. data/man/man8/puppet-instrumentation_listener.8 +222 -0
  51. data/man/man8/puppet-instrumentation_probe.8 +207 -0
  52. data/man/man8/puppet-key.8 +11 -7
  53. data/man/man8/puppet-kick.8 +35 -3
  54. data/man/man8/puppet-man.8 +1 -1
  55. data/man/man8/puppet-master.8 +1 -1
  56. data/man/man8/puppet-module.8 +451 -0
  57. data/man/man8/puppet-node.8 +64 -22
  58. data/man/man8/puppet-parser.8 +1 -1
  59. data/man/man8/puppet-plugin.8 +1 -1
  60. data/man/man8/puppet-queue.8 +1 -1
  61. data/man/man8/puppet-report.8 +12 -8
  62. data/man/man8/puppet-resource.8 +1 -1
  63. data/man/man8/puppet-resource_type.8 +11 -7
  64. data/man/man8/puppet-secret_agent.8 +1 -1
  65. data/man/man8/puppet-status.8 +11 -7
  66. data/man/man8/puppet.8 +1 -1
  67. data/man/man8/puppetca.8 +1 -1
  68. data/man/man8/puppetd.8 +17 -17
  69. data/man/man8/puppetdoc.8 +15 -3
  70. data/man/man8/puppetmasterd.8 +1 -1
  71. data/man/man8/puppetqd.8 +1 -1
  72. data/man/man8/puppetrun.8 +35 -3
  73. data/man/man8/ralsh.8 +1 -1
  74. data/spec/fixtures/unit/provider/package/gem/line-with-1.8.5-warning +14 -0
  75. data/spec/fixtures/unit/provider/package/pkg/{dummy → dummy_solaris10} +0 -0
  76. data/spec/fixtures/unit/provider/package/pkg/dummy_solaris11 +1 -0
  77. data/spec/fixtures/unit/provider/package/pkg/solaris11 +12 -0
  78. data/spec/fixtures/unit/provider/package/pkg/unknown_status +12 -0
  79. data/spec/fixtures/unit/provider/service/gentoo/rc_update_show +30 -0
  80. data/spec/integration/defaults_spec.rb +2 -7
  81. data/spec/integration/network/server/mongrel_spec.rb +16 -10
  82. data/spec/integration/network/server/webrick_spec.rb +16 -9
  83. data/spec/integration/provider/service/init_spec.rb +20 -4
  84. data/spec/integration/provider/ssh_authorized_key_spec.rb +119 -107
  85. data/spec/unit/face/module/install_spec.rb +16 -4
  86. data/spec/unit/network/http/api/v1_spec.rb +8 -0
  87. data/spec/unit/network/http_pool_spec.rb +80 -74
  88. data/spec/unit/node/environment_spec.rb +9 -4
  89. data/spec/unit/parser/ast/leaf_spec.rb +2 -2
  90. data/spec/unit/parser/ast_spec.rb +3 -3
  91. data/spec/unit/parser/compiler_spec.rb +0 -17
  92. data/spec/unit/parser/lexer_spec.rb +45 -2
  93. data/spec/unit/parser/scope_spec.rb +181 -14
  94. data/spec/unit/provider/package/gem_spec.rb +17 -1
  95. data/spec/unit/provider/package/pkg_spec.rb +70 -22
  96. data/spec/unit/provider/service/gentoo_spec.rb +237 -0
  97. data/spec/unit/provider/service/init_spec.rb +2 -2
  98. data/spec/unit/provider/service/redhat_spec.rb +2 -2
  99. data/spec/unit/provider/service/upstart_spec.rb +414 -5
  100. data/spec/unit/provider/ssh_authorized_key/parsed_spec.rb +24 -0
  101. data/spec/unit/reports/tagmail_spec.rb +50 -0
  102. data/spec/unit/type/cron_spec.rb +21 -1
  103. data/spec/unit/type/filebucket_spec.rb +39 -9
  104. data/spec/unit/util/colors_spec.rb +69 -0
  105. data/spec/unit/util/log/destinations_spec.rb +17 -9
  106. data/spec/unit/util/log_spec.rb +2 -1
  107. data/spec/unit/util_spec.rb +11 -0
  108. data/tasks/rake/gem.rake +1 -1
  109. data/tasks/rake/manpages.rake +11 -3
  110. data/test/network/handler/fileserver.rb +7 -1
  111. metadata +22 -10
@@ -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\-NODE" "8" "June 2011" "Puppet Labs, LLC" "Puppet manual"
4
+ .TH "PUPPET\-NODE" "8" "June 2012" "Puppet Labs, LLC" "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-node\fR \- View and manage node definitions\.
8
8
  .
9
9
  .SH "SYNOPSIS"
10
- puppet node \fIaction\fR [\-\-terminus TERMINUS]
10
+ puppet node \fIaction\fR [\-\-terminus TERMINUS] [\-\-extra HASH]
11
11
  .
12
12
  .SH "DESCRIPTION"
13
13
  This subcommand interacts with node objects, which are used by Puppet to build a catalog\. A node object consists of the node\'s facts, environment, node parameters (exposed in the parser as top\-scope variables), and classes\.
@@ -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
  .
@@ -46,12 +50,49 @@ The terminus for an action is often determined by context, but occasionally need
46
50
  .
47
51
  .SH "ACTIONS"
48
52
  .
49
- .TP
50
- \fBdestroy\fR \- Invalid for this subcommand\.
51
- \fBSYNOPSIS\fR
53
+ .IP "\(bu" 4
54
+ \fBclean\fR \- Clean up everything a puppetmaster knows about a node: \fBSYNOPSIS\fR
52
55
  .
53
56
  .IP
54
- puppet node destroy [\-\-terminus TERMINUS] \fIkey\fR
57
+ puppet node clean [\-\-terminus TERMINUS] [\-\-extra HASH] [\-\-[no\-]unexport] \fIhost1\fR [\fIhost2\fR \.\.\.]
58
+ .
59
+ .IP
60
+ \fBDESCRIPTION\fR
61
+ .
62
+ .IP
63
+ This includes
64
+ .
65
+ .IP "\(bu" 4
66
+ Signed certificates ($vardir/ssl/ca/signed/node\.domain\.pem)
67
+ .
68
+ .IP "\(bu" 4
69
+ Cached facts ($vardir/yaml/facts/node\.domain\.yaml)
70
+ .
71
+ .IP "\(bu" 4
72
+ Cached node stuff ($vardir/yaml/node/node\.domain\.yaml)
73
+ .
74
+ .IP "\(bu" 4
75
+ Reports ($vardir/reports/node\.domain)
76
+ .
77
+ .IP "\(bu" 4
78
+ Stored configs: it can either remove all data from an host in your storedconfig database, or with \-\-unexport turn every exported resource supporting ensure to absent so that any other host checking out their config can remove those exported configurations\.
79
+ .
80
+ .IP "" 0
81
+ .
82
+ .IP
83
+ This will unexport exported resources of a host, so that consumers of these resources can remove the exported resources and we will safely remove the node from our infrastructure\.
84
+ .
85
+ .IP
86
+ \fBOPTIONS\fR
87
+ .
88
+ .IP
89
+ \fI\-\-[no\-]unexport\fR \- Unexport exported resources
90
+ .
91
+ .IP "\(bu" 4
92
+ \fBdestroy\fR \- Invalid for this subcommand\.: \fBSYNOPSIS\fR
93
+ .
94
+ .IP
95
+ puppet node destroy [\-\-terminus TERMINUS] [\-\-extra HASH] \fIkey\fR
55
96
  .
56
97
  .IP
57
98
  \fBDESCRIPTION\fR
@@ -59,12 +100,11 @@ puppet node destroy [\-\-terminus TERMINUS] \fIkey\fR
59
100
  .IP
60
101
  Invalid for this subcommand\.
61
102
  .
62
- .TP
63
- \fBfind\fR \- Retrieve a node object\.
64
- \fBSYNOPSIS\fR
103
+ .IP "\(bu" 4
104
+ \fBfind\fR \- Retrieve a node object\.: \fBSYNOPSIS\fR
65
105
  .
66
106
  .IP
67
- puppet node find [\-\-terminus TERMINUS] \fIhost\fR
107
+ puppet node find [\-\-terminus TERMINUS] [\-\-extra HASH] \fIhost\fR
68
108
  .
69
109
  .IP
70
110
  \fBDESCRIPTION\fR
@@ -81,12 +121,11 @@ A hash containing the node\'s \fBclasses\fR, \fBenvironment\fR, \fBexpiration\fR
81
121
  .IP
82
122
  RENDERING ISSUES: Rendering as string and json are currently broken; node objects can only be rendered as yaml\.
83
123
  .
84
- .TP
85
- \fBinfo\fR \- Print the default terminus class for this face\.
86
- \fBSYNOPSIS\fR
124
+ .IP "\(bu" 4
125
+ \fBinfo\fR \- Print the default terminus class for this face\.: \fBSYNOPSIS\fR
87
126
  .
88
127
  .IP
89
- puppet node info [\-\-terminus TERMINUS]
128
+ puppet node info [\-\-terminus TERMINUS] [\-\-extra HASH]
90
129
  .
91
130
  .IP
92
131
  \fBDESCRIPTION\fR
@@ -94,12 +133,11 @@ puppet node info [\-\-terminus TERMINUS]
94
133
  .IP
95
134
  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 \'\-\-mode\' option\.
96
135
  .
97
- .TP
98
- \fBsave\fR \- Invalid for this subcommand\.
99
- \fBSYNOPSIS\fR
136
+ .IP "\(bu" 4
137
+ \fBsave\fR \- Invalid for this subcommand\.: \fBSYNOPSIS\fR
100
138
  .
101
139
  .IP
102
- puppet node save [\-\-terminus TERMINUS]
140
+ puppet node save [\-\-terminus TERMINUS] [\-\-extra HASH] \fIkey\fR
103
141
  .
104
142
  .IP
105
143
  \fBDESCRIPTION\fR
@@ -107,12 +145,11 @@ puppet node save [\-\-terminus TERMINUS]
107
145
  .IP
108
146
  Invalid for this subcommand\.
109
147
  .
110
- .TP
111
- \fBsearch\fR \- Invalid for this subcommand\.
112
- \fBSYNOPSIS\fR
148
+ .IP "\(bu" 4
149
+ \fBsearch\fR \- Invalid for this subcommand\.: \fBSYNOPSIS\fR
113
150
  .
114
151
  .IP
115
- puppet node search [\-\-terminus TERMINUS] \fIquery\fR
152
+ puppet node search [\-\-terminus TERMINUS] [\-\-extra HASH] \fIquery\fR
116
153
  .
117
154
  .IP
118
155
  \fBDESCRIPTION\fR
@@ -120,6 +157,8 @@ puppet node search [\-\-terminus TERMINUS] \fIquery\fR
120
157
  .IP
121
158
  Invalid for this subcommand\.
122
159
  .
160
+ .IP "" 0
161
+ .
123
162
  .SH "EXAMPLES"
124
163
  \fBfind\fR
125
164
  .
@@ -163,6 +202,9 @@ This subcommand is an indirector face, which exposes \fBfind\fR, \fBsearch\fR, \
163
202
  \fBrest\fR
164
203
  .
165
204
  .IP "\(bu" 4
205
+ \fBstore_configs\fR
206
+ .
207
+ .IP "\(bu" 4
166
208
  \fByaml\fR
167
209
  .
168
210
  .IP "" 0
@@ -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\-PARSER" "8" "June 2011" "Puppet Labs, LLC" "Puppet manual"
4
+ .TH "PUPPET\-PARSER" "8" "June 2012" "Puppet Labs, LLC" "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-parser\fR \- Interact directly with the parser\.
@@ -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\-PLUGIN" "8" "June 2011" "Puppet Labs, LLC" "Puppet manual"
4
+ .TH "PUPPET\-PLUGIN" "8" "June 2012" "Puppet Labs, LLC" "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-plugin\fR \- Interact with the Puppet plugin system\.
@@ -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\-QUEUE" "8" "June 2011" "Puppet Labs, LLC" "Puppet manual"
4
+ .TH "PUPPET\-QUEUE" "8" "June 2012" "Puppet Labs, LLC" "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-queue\fR \- Queuing daemon for asynchronous storeconfigs
@@ -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\-REPORT" "8" "June 2011" "Puppet Labs, LLC" "Puppet manual"
4
+ .TH "PUPPET\-REPORT" "8" "June 2012" "Puppet Labs, LLC" "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-report\fR \- Create, display, and submit reports\.
8
8
  .
9
9
  .SH "SYNOPSIS"
10
- puppet report \fIaction\fR [\-\-terminus TERMINUS]
10
+ puppet report \fIaction\fR [\-\-terminus TERMINUS] [\-\-extra HASH]
11
11
  .
12
12
  .SH "OPTIONS"
13
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 is a valid configuration parameter, so you can specify \fB\-\-server <servername>\fR as an argument\.
@@ -32,6 +32,10 @@ Whether to log verbosely\.
32
32
  Whether to log debug information\.
33
33
  .
34
34
  .TP
35
+ \-\-extra HASH
36
+ 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\.
37
+ .
38
+ .TP
35
39
  \-\-terminus TERMINUS
36
40
  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\.
37
41
  .
@@ -48,7 +52,7 @@ The terminus for an action is often determined by context, but occasionally need
48
52
  \fBSYNOPSIS\fR
49
53
  .
50
54
  .IP
51
- puppet report destroy [\-\-terminus TERMINUS] \fIkey\fR
55
+ puppet report destroy [\-\-terminus TERMINUS] [\-\-extra HASH] \fIkey\fR
52
56
  .
53
57
  .IP
54
58
  \fBDESCRIPTION\fR
@@ -61,7 +65,7 @@ Invalid for this face\.
61
65
  \fBSYNOPSIS\fR
62
66
  .
63
67
  .IP
64
- puppet report find [\-\-terminus TERMINUS] \fIkey\fR
68
+ puppet report find [\-\-terminus TERMINUS] [\-\-extra HASH] \fIkey\fR
65
69
  .
66
70
  .IP
67
71
  \fBDESCRIPTION\fR
@@ -74,7 +78,7 @@ Invalid for this face\.
74
78
  \fBSYNOPSIS\fR
75
79
  .
76
80
  .IP
77
- puppet report info [\-\-terminus TERMINUS]
81
+ puppet report info [\-\-terminus TERMINUS] [\-\-extra HASH]
78
82
  .
79
83
  .IP
80
84
  \fBDESCRIPTION\fR
@@ -87,7 +91,7 @@ Prints the default terminus class for this subcommand\. Note that different run
87
91
  \fBSYNOPSIS\fR
88
92
  .
89
93
  .IP
90
- puppet report save [\-\-terminus TERMINUS] \fIreport\fR
94
+ puppet report save [\-\-terminus TERMINUS] [\-\-extra HASH] \fIreport\fR
91
95
  .
92
96
  .IP
93
97
  \fBDESCRIPTION\fR
@@ -106,7 +110,7 @@ Nothing\.
106
110
  \fBSYNOPSIS\fR
107
111
  .
108
112
  .IP
109
- puppet report search [\-\-terminus TERMINUS] \fIquery\fR
113
+ puppet report search [\-\-terminus TERMINUS] [\-\-extra HASH] \fIquery\fR
110
114
  .
111
115
  .IP
112
116
  \fBDESCRIPTION\fR
@@ -119,7 +123,7 @@ Invalid for this face\.
119
123
  \fBSYNOPSIS\fR
120
124
  .
121
125
  .IP
122
- puppet report submit [\-\-terminus TERMINUS] \fIreport\fR
126
+ puppet report submit [\-\-terminus TERMINUS] [\-\-extra HASH] \fIreport\fR
123
127
  .
124
128
  .IP
125
129
  \fBDESCRIPTION\fR
@@ -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\-RESOURCE" "8" "June 2011" "Puppet Labs, LLC" "Puppet manual"
4
+ .TH "PUPPET\-RESOURCE" "8" "June 2012" "Puppet Labs, LLC" "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-resource\fR \- The resource abstraction layer shell
@@ -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\-RESOURCE_TYPE" "8" "June 2011" "Puppet Labs, LLC" "Puppet manual"
4
+ .TH "PUPPET\-RESOURCE_TYPE" "8" "June 2012" "Puppet Labs, LLC" "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-resource_type\fR \- View classes, defined resource types, and nodes from all manifests\.
8
8
  .
9
9
  .SH "SYNOPSIS"
10
- puppet resource_type \fIaction\fR [\-\-terminus TERMINUS]
10
+ puppet resource_type \fIaction\fR [\-\-terminus TERMINUS] [\-\-extra HASH]
11
11
  .
12
12
  .SH "DESCRIPTION"
13
13
  This subcommand reads information about the resource collections (classes, nodes, and defined types) available in Puppet\'s site manifest and modules\.
@@ -38,6 +38,10 @@ Whether to log verbosely\.
38
38
  Whether to log debug information\.
39
39
  .
40
40
  .TP
41
+ \-\-extra HASH
42
+ 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\.
43
+ .
44
+ .TP
41
45
  \-\-terminus TERMINUS
42
46
  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\.
43
47
  .
@@ -54,7 +58,7 @@ The terminus for an action is often determined by context, but occasionally need
54
58
  \fBSYNOPSIS\fR
55
59
  .
56
60
  .IP
57
- puppet resource_type destroy [\-\-terminus TERMINUS] \fIkey\fR
61
+ puppet resource_type destroy [\-\-terminus TERMINUS] [\-\-extra HASH] \fIkey\fR
58
62
  .
59
63
  .IP
60
64
  \fBDESCRIPTION\fR
@@ -67,7 +71,7 @@ Invalid for this subcommand\.
67
71
  \fBSYNOPSIS\fR
68
72
  .
69
73
  .IP
70
- puppet resource_type find [\-\-terminus TERMINUS] \fIcollection_name\fR
74
+ puppet resource_type find [\-\-terminus TERMINUS] [\-\-extra HASH] \fIcollection_name\fR
71
75
  .
72
76
  .IP
73
77
  \fBDESCRIPTION\fR
@@ -95,7 +99,7 @@ If two resource collections share the same name (e\.g\. you have both a node and
95
99
  \fBSYNOPSIS\fR
96
100
  .
97
101
  .IP
98
- puppet resource_type info [\-\-terminus TERMINUS]
102
+ puppet resource_type info [\-\-terminus TERMINUS] [\-\-extra HASH]
99
103
  .
100
104
  .IP
101
105
  \fBDESCRIPTION\fR
@@ -108,7 +112,7 @@ Prints the default terminus class for this subcommand\. Note that different run
108
112
  \fBSYNOPSIS\fR
109
113
  .
110
114
  .IP
111
- puppet resource_type save [\-\-terminus TERMINUS]
115
+ puppet resource_type save [\-\-terminus TERMINUS] [\-\-extra HASH] \fIkey\fR
112
116
  .
113
117
  .IP
114
118
  \fBDESCRIPTION\fR
@@ -121,7 +125,7 @@ Invalid for this subcommand\.
121
125
  \fBSYNOPSIS\fR
122
126
  .
123
127
  .IP
124
- puppet resource_type search [\-\-terminus TERMINUS] \fIregular_expression\fR
128
+ puppet resource_type search [\-\-terminus TERMINUS] [\-\-extra HASH] \fIregular_expression\fR
125
129
  .
126
130
  .IP
127
131
  \fBDESCRIPTION\fR
@@ -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\-SECRET_AGENT" "8" "June 2011" "Puppet Labs, LLC" "Puppet manual"
4
+ .TH "PUPPET\-SECRET_AGENT" "8" "June 2012" "Puppet Labs, LLC" "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-secret_agent\fR \- Mimics puppet agent\.
@@ -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\-STATUS" "8" "June 2011" "Puppet Labs, LLC" "Puppet manual"
4
+ .TH "PUPPET\-STATUS" "8" "June 2012" "Puppet Labs, LLC" "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\-status\fR \- View puppet server status\.
8
8
  .
9
9
  .SH "SYNOPSIS"
10
- puppet status \fIaction\fR [\-\-terminus TERMINUS]
10
+ puppet status \fIaction\fR [\-\-terminus TERMINUS] [\-\-extra HASH]
11
11
  .
12
12
  .SH "OPTIONS"
13
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 is a valid configuration parameter, so you can specify \fB\-\-server <servername>\fR as an argument\.
@@ -32,6 +32,10 @@ Whether to log verbosely\.
32
32
  Whether to log debug information\.
33
33
  .
34
34
  .TP
35
+ \-\-extra HASH
36
+ 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\.
37
+ .
38
+ .TP
35
39
  \-\-terminus TERMINUS
36
40
  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\.
37
41
  .
@@ -48,7 +52,7 @@ The terminus for an action is often determined by context, but occasionally need
48
52
  \fBSYNOPSIS\fR
49
53
  .
50
54
  .IP
51
- puppet status destroy [\-\-terminus TERMINUS] \fIkey\fR
55
+ puppet status destroy [\-\-terminus TERMINUS] [\-\-extra HASH] \fIkey\fR
52
56
  .
53
57
  .IP
54
58
  \fBDESCRIPTION\fR
@@ -61,7 +65,7 @@ Invalid for this subcommand\.
61
65
  \fBSYNOPSIS\fR
62
66
  .
63
67
  .IP
64
- puppet status find [\-\-terminus TERMINUS] \fIdummy_text\fR
68
+ puppet status [\-\-terminus TERMINUS] [\-\-extra HASH] \fIdummy_text\fR
65
69
  .
66
70
  .IP
67
71
  \fBDESCRIPTION\fR
@@ -92,7 +96,7 @@ Although this action always returns an unnamed status object, it requires a dumm
92
96
  \fBSYNOPSIS\fR
93
97
  .
94
98
  .IP
95
- puppet status info [\-\-terminus TERMINUS]
99
+ puppet status info [\-\-terminus TERMINUS] [\-\-extra HASH]
96
100
  .
97
101
  .IP
98
102
  \fBDESCRIPTION\fR
@@ -105,7 +109,7 @@ Prints the default terminus class for this subcommand\. Note that different run
105
109
  \fBSYNOPSIS\fR
106
110
  .
107
111
  .IP
108
- puppet status save [\-\-terminus TERMINUS]
112
+ puppet status save [\-\-terminus TERMINUS] [\-\-extra HASH] \fIkey\fR
109
113
  .
110
114
  .IP
111
115
  \fBDESCRIPTION\fR
@@ -118,7 +122,7 @@ Invalid for this subcommand\.
118
122
  \fBSYNOPSIS\fR
119
123
  .
120
124
  .IP
121
- puppet status search [\-\-terminus TERMINUS] \fIquery\fR
125
+ puppet status search [\-\-terminus TERMINUS] [\-\-extra HASH] \fIquery\fR
122
126
  .
123
127
  .IP
124
128
  \fBDESCRIPTION\fR
data/man/man8/puppet.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" "8" "June 2011" "Puppet Labs, LLC" "Puppet manual"
4
+ .TH "PUPPET" "8" "June 2012" "Puppet Labs, LLC" "Puppet manual"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBpuppet\fR
data/man/man8/puppetca.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 2011" "Puppet Labs, LLC" "Puppet manual"
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