Class: Puppet::Application::Apply
Constant Summary
DOCPATTERN
Instance Attribute Summary
#command_line, #options
Instance Method Summary
collapse
[], banner, clear!, clear?, #configure_indirector_routes, controlled_run, exit, find, #handlearg, #initialize, interrupted?, #name, option, option_parser_commands, #parse_options, #preinit, restart!, restart_requested?, #run, run_mode, #set_run_mode, should_not_parse_config, should_parse_config, #should_parse_config?, should_parse_config?, stop!, stop_requested?
Methods included from Util
absolute_path?, activerecord_version, benchmark, binread, chuser, classproxy, #execfail, #execpipe, execute, execute_posix, execute_windows, logmethods, memory, path_to_uri, proxy, recmkdir, secure_open, symbolize, symbolizehash, symbolizehash!, synchronize_on, thinmark, #threadlock, uri_to_path, wait_for_output, which, withumask
#get_posix_field, #gid, #idfield, #methodbyid, #methodbyname, #search_posix_field, #uid
Instance Method Details
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
# File 'lib/puppet/application/apply.rb', line 139
def apply
if options[:catalog] == "-"
text = $stdin.read
else
text = File.read(options[:catalog])
end
begin
catalog = Puppet::Resource::Catalog.convert_from(Puppet::Resource::Catalog.default_format,text)
catalog = Puppet::Resource::Catalog.pson_create(catalog) unless catalog.is_a?(Puppet::Resource::Catalog)
rescue => detail
raise Puppet::Error, "Could not deserialize catalog from pson: #{detail}"
end
catalog = catalog.to_ral
require 'puppet/configurer'
configurer = Puppet::Configurer.new
configurer.run :catalog => catalog
end
|
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
# File 'lib/puppet/application/apply.rb', line 34
def help
"\npuppet-apply(8) -- Apply Puppet manifests locally\n========\n\nSYNOPSIS\n--------\nApplies a standalone Puppet manifest to the local system.\n\n\nUSAGE\n-----\npuppet apply [-h|--help] [-V|--version] [-d|--debug] [-v|--verbose]\n[-e|--execute] [--detailed-exitcodes] [-l|--logdest <file>]\n[--apply <catalog>] <file>\n\n\nDESCRIPTION\n-----------\nThis is the standalone puppet execution tool; use it to apply\nindividual manifests.\n\nWhen provided with a modulepath, via command line or config file, puppet\napply can effectively mimic the catalog that would be served by puppet\nmaster with access to the same modules, although there are some subtle\ndifferences. When combined with scheduling and an automated system for\npushing manifests, this can be used to implement a serverless Puppet\nsite.\n\nMost users should use 'puppet agent' and 'puppet master' for site-wide\nmanifests.\n\n\nOPTIONS\n-------\nNote that any configuration parameter that's valid in the configuration\nfile is also a valid long argument. For example, 'modulepath' is a\nvalid configuration parameter, so you can specify '--tags <class>,<tag>'\nas an argument.\n\nSee the configuration file documentation at\nhttp://docs.puppetlabs.com/references/stable/configuration.html for the\nfull list of acceptable parameters. A commented list of all\nconfiguration options can also be generated by running puppet with\n'--genconfig'.\n\n* --debug:\nEnable full debugging.\n\n* --detailed-exitcodes:\nProvide transaction information via exit codes. If this is enabled, an exit\ncode of '2' means there were changes, an exit code of '4' means there were\nfailures during the transaction, and an exit code of '6' means there were both\nchanges and failures.\n\n* --help:\nPrint this help message\n\n* --loadclasses:\nLoad any stored classes. 'puppet agent' caches configured classes\n(usually at /etc/puppet/classes.txt), and setting this option causes\nall of those classes to be set in your puppet manifest.\n\n* --logdest:\nWhere to send messages. Choose between syslog, the console, and a log\nfile. Defaults to sending messages to the console.\n\n* --execute:\nExecute a specific piece of Puppet code\n\n* --verbose:\nPrint extra information.\n\n* --apply:\nApply a JSON catalog (such as one generated with 'puppet master --compile'). You can\neither specify a JSON file or pipe in JSON from standard input.\n\n\nEXAMPLE\n-------\n $ puppet apply -l /tmp/manifest.log manifest.pp\n $ puppet apply --modulepath=/root/dev/modules -e \"include ntpd::server\"\n\n\nAUTHOR\n------\nLuke Kanies\n\n\nCOPYRIGHT\n---------\nCopyright (c) 2011 Puppet Labs, LLC Licensed under the Apache 2.0 License\n\n HELP\nend\n"
|
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
|
# File 'lib/puppet/application/apply.rb', line 160
def main
if options[:code] or command_line.args.length == 0
Puppet[:code] = options[:code] || STDIN.read
else
manifest = command_line.args.shift
raise "Could not find file #{manifest}" unless File.exist?(manifest)
Puppet.warning("Only one file can be applied per run. Skipping #{command_line.args.join(', ')}") if command_line.args.size > 0
Puppet[:manifest] = manifest
end
unless facts = Puppet::Node::Facts.indirection.find(Puppet[:node_name_value])
raise "Could not find facts for #{Puppet[:node_name_value]}"
end
unless Puppet[:node_name_fact].empty?
Puppet[:node_name_value] = facts.values[Puppet[:node_name_fact]]
facts.name = Puppet[:node_name_value]
end
unless node = Puppet::Node.indirection.find(Puppet[:node_name_value])
raise "Could not find node #{Puppet[:node_name_value]}"
end
node.merge(facts.values)
if options[:loadclasses]
file = Puppet[:classfile]
if FileTest.exists?(file)
unless FileTest.readable?(file)
$stderr.puts "#{file} is not readable"
exit(63)
end
node.classes = File.read(file).split(/[\s\n]+/)
end
end
begin
starttime = Time.now
catalog = Puppet::Resource::Catalog.indirection.find(node.name, :use_node => node)
catalog = catalog.to_ral
catalog.finalize
catalog.retrieval_duration = Time.now - starttime
require 'puppet/configurer'
configurer = Puppet::Configurer.new
report = configurer.run(:skip_plugin_download => true, :catalog => catalog)
if not report
exit(1)
elsif options[:detailed_exitcodes] then
exit(report.exit_status)
else
exit(0)
end
rescue => detail
puts detail.backtrace if Puppet[:trace]
$stderr.puts detail.message
exit(1)
end
end
|
#run_command ⇒ Object
131
132
133
134
135
136
137
|
# File 'lib/puppet/application/apply.rb', line 131
def run_command
if options[:catalog]
apply
else
main
end
end
|
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
|
# File 'lib/puppet/application/apply.rb', line 231
def setup
exit(Puppet.settings.print_configs ? 0 : 1) if Puppet.settings.print_configs?
Puppet::Util::Log.newdestination(:console) unless options[:logset]
client = nil
server = nil
Signal.trap(:INT) do
$stderr.puts "Exiting"
exit(1)
end
Puppet::Transaction::Report.indirection.cache_class = :yaml
if options[:debug]
Puppet::Util::Log.level = :debug
elsif options[:verbose]
Puppet::Util::Log.level = :info
end
end
|