cfnpp 0.3.10 → 0.3.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/cfnpp +18 -13
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3227584ca669cfd86d82826c6076d97568072e0b
|
4
|
+
data.tar.gz: 30c93a47542e4cf47a6f8cbd9be75b5284389759
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cbf84adbba4c63182a32232473aac8c9eca565432d33640f7a9dd26b5b2836c22d746cc9361bdba583661cae2b4b74018747a5b3b8cce0599bbbac8c1322fa2e
|
7
|
+
data.tar.gz: 8a6c0ee958d52cb26a8e527c6a20ce43847c899a055f9e2ed318110ea56c046fb87175eaf796aa0b44cf3bbf796a013ea03623d45e1a63720ddfcf6b952f1e62
|
data/bin/cfnpp
CHANGED
@@ -52,6 +52,9 @@ eot
|
|
52
52
|
opts.on('-c', '--conf PATH', 'use PATH instead of $basepath/conf/$environment_type for conf file') do |confpath|
|
53
53
|
cli_opts[:confpath] = confpath
|
54
54
|
end
|
55
|
+
opts.on('-w', '--watch', 'after update, print stack events every 10 seconds') do |watch|
|
56
|
+
cli_opts[:watch] = watch
|
57
|
+
end
|
55
58
|
opts.on('--git-revision-check', "skip update when the stack's current revision matches the new revision") do |revision|
|
56
59
|
cli_opts[:git_revision_check] = revision
|
57
60
|
end
|
@@ -241,7 +244,7 @@ eot
|
|
241
244
|
:capabilities => ['CAPABILITY_IAM'])
|
242
245
|
end
|
243
246
|
|
244
|
-
after_update(stack, timestamp)
|
247
|
+
after_update(stack, timestamp, cli_opts)
|
245
248
|
end
|
246
249
|
|
247
250
|
def do_upload(uploader, template_result, opts)
|
@@ -273,23 +276,25 @@ def do_upload(uploader, template_result, opts)
|
|
273
276
|
|
274
277
|
end
|
275
278
|
|
276
|
-
def after_update(stack, timestamp)
|
279
|
+
def after_update(stack, timestamp, cli_opts)
|
277
280
|
#cmd = "watch -n 10 cfn-describe-stack-events #{stack_name}"
|
278
281
|
#cmd = "watch -n 10 bin/get_stack_events.rb #{stack_name}"
|
279
282
|
#puts cmd
|
280
|
-
if
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
283
|
+
if cli_opts[:watch]
|
284
|
+
if STDIN.tty? && STDOUT.tty?
|
285
|
+
puts "STDIN and STDOUT are ttys!"
|
286
|
+
stuff = CfnTools.new( stack.name)
|
287
|
+
while true
|
288
|
+
begin
|
289
|
+
stuff.display_stack_events
|
290
|
+
sleep 10
|
291
|
+
rescue SystemExit, Interrupt
|
292
|
+
exit 0
|
293
|
+
end
|
289
294
|
end
|
295
|
+
else
|
296
|
+
puts "done updating"
|
290
297
|
end
|
291
|
-
else
|
292
|
-
puts "done updating"
|
293
298
|
end
|
294
299
|
|
295
300
|
# This is all working, tested code, just not sure it belongs here. --stsmith
|