Skip to content

Instantly share code, notes, and snippets.

@switchflip
Created November 25, 2015 22:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save switchflip/e42d0600edfe9a94455b to your computer and use it in GitHub Desktop.
Save switchflip/e42d0600edfe9a94455b to your computer and use it in GitHub Desktop.
AWS
Services
OpsWorks
Edit
tberry @ touchbistro
Global
Support
Instance: shiryoStack: ProductionLayer: NGINX Load BalancerType: setupCreated at: 2015-11-25 21:43:51 UTC Download log file
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
[2015-11-25T21:46:42+00:00] INFO: Starting chef-zero on port 8889 with repository at repository at /opt/aws/opsworks/current
One version per cookbook
data_bags at /var/lib/aws/opsworks/data/data_bags
nodes at /var/lib/aws/opsworks/data/nodes
[2015-11-25T21:46:42+00:00] INFO: Forking chef instance to converge...
[2015-11-25T21:46:42+00:00] INFO: *** Chef 11.10.4 ***
[2015-11-25T21:46:42+00:00] INFO: Chef-client pid: 1205
[2015-11-25T21:46:43+00:00] INFO: Setting the run_list to ["opsworks_custom_cookbooks::load", "opsworks_custom_cookbooks::execute"] from JSON
[2015-11-25T21:46:43+00:00] WARN: Run List override has been provided.
[2015-11-25T21:46:43+00:00] WARN: Original Run List: [recipe[opsworks_custom_cookbooks::load], recipe[opsworks_custom_cookbooks::execute]]
[2015-11-25T21:46:43+00:00] WARN: Overridden Run List: [recipe[opsworks_custom_cookbooks::load], recipe[opsworks_custom_cookbooks::execute]]
[2015-11-25T21:46:43+00:00] INFO: Run List is [recipe[opsworks_custom_cookbooks::load], recipe[opsworks_custom_cookbooks::execute]]
[2015-11-25T21:46:43+00:00] INFO: Run List expands to [opsworks_custom_cookbooks::load, opsworks_custom_cookbooks::execute]
[2015-11-25T21:46:43+00:00] INFO: Starting Chef Run for shiryo.localdomain
[2015-11-25T21:46:43+00:00] INFO: Running start handlers
[2015-11-25T21:46:43+00:00] INFO: Start handlers complete.
[2015-11-25T21:46:43+00:00] INFO: HTTP Request Returned 404 Not Found: Object not found: /reports/nodes/shiryo.localdomain/runs
[2015-11-25T21:46:50+00:00] INFO: Loading cookbooks [apache2, dependencies, deploy, gem_support, mod_php5_apache2, mysql, nginx, opsworks_agent_monit, opsworks_aws_flow_ruby, opsworks_berkshelf, opsworks_bundler, opsworks_commons, opsworks_custom_cookbooks, opsworks_initial_setup, opsworks_java, opsworks_nodejs, opsworks_rubygems, packages, passenger_apache2, php, rails, ruby, scm_helper, ssh_users, unicorn]
[2015-11-25T21:46:50+00:00] INFO: Storing updated cookbooks/opsworks_custom_cookbooks/recipes/load.rb in the cache.
[2015-11-25T21:46:50+00:00] INFO: Storing updated cookbooks/opsworks_custom_cookbooks/recipes/berkshelf.rb in the cache.
[2015-11-25T21:46:50+00:00] INFO: Storing updated cookbooks/opsworks_custom_cookbooks/recipes/default.rb in the cache.
[2015-11-25T21:46:50+00:00] INFO: Storing updated cookbooks/opsworks_custom_cookbooks/recipes/execute.rb in the cache.
[2015-11-25T21:46:50+00:00] INFO: Storing updated cookbooks/opsworks_custom_cookbooks/recipes/checkout.rb in the cache.
[2015-11-25T21:46:51+00:00] INFO: Storing updated cookbooks/opsworks_custom_cookbooks/recipes/update.rb in the cache.
[2015-11-25T21:46:51+00:00] INFO: Storing updated cookbooks/opsworks_custom_cookbooks/libraries/single_gem_version.rb in the cache.
[2015-11-25T21:46:51+00:00] INFO: Storing updated cookbooks/opsworks_custom_cookbooks/attributes/default.rb in the cache.
[2015-11-25T21:46:51+00:00] INFO: Storing updated cookbooks/opsworks_custom_cookbooks/attributes/customize.rb in the cache.
[2015-11-25T21:46:51+00:00] INFO: Storing updated cookbooks/opsworks_custom_cookbooks/metadata.rb in the cache.
[2015-11-25T21:46:51+00:00] INFO: Storing updated cookbooks/scm_helper/libraries/archive.rb in the cache.
[2015-11-25T21:46:51+00:00] INFO: Storing updated cookbooks/scm_helper/libraries/svn.rb in the cache.
[2015-11-25T21:46:51+00:00] INFO: Storing updated cookbooks/scm_helper/libraries/s3.rb in the cache.
[2015-11-25T21:46:51+00:00] INFO: Storing updated cookbooks/scm_helper/libraries/package.rb in the cache.
[2015-11-25T21:46:51+00:00] INFO: Storing updated cookbooks/scm_helper/libraries/git.rb in the cache.
[2015-11-25T21:46:51+00:00] INFO: Storing updated cookbooks/scm_helper/metadata.rb in the cache.
[2015-11-25T21:46:51+00:00] INFO: Storing updated cookbooks/opsworks_initial_setup/recipes/bind_mounts.rb in the cache.
[2015-11-25T21:46:51+00:00] INFO: Storing updated cookbooks/opsworks_initial_setup/recipes/autofs.rb in the cache.
[2015-11-25T21:46:51+00:00] INFO: Storing updated cookbooks/opsworks_initial_setup/recipes/swap.rb in the cache.
[2015-11-25T21:46:51+00:00] INFO: Storing updated cookbooks/opsworks_initial_setup/recipes/package_sqlite.rb in the cache.
[2015-11-25T21:46:51+00:00] INFO: Storing updated cookbooks/opsworks_initial_setup/recipes/package_screen.rb in the cache.
[2015-11-25T21:46:51+00:00] INFO: Storing updated cookbooks/opsworks_initial_setup/recipes/tweak_chef_yum_dump.rb in the cache.
[2015-11-25T21:46:51+00:00] INFO: Storing updated cookbooks/opsworks_initial_setup/recipes/yum_conf.rb in the cache.
[2015-11-25T21:46:51+00:00] INFO: Storing updated cookbooks/opsworks_initial_setup/recipes/setup_rhel_repos.rb in the cache.
[2015-11-25T21:46:51+00:00] INFO: Storing updated cookbooks/opsworks_initial_setup/recipes/sysctl.rb in the cache.
[2015-11-25T21:46:52+00:00] INFO: Storing updated cookbooks/opsworks_initial_setup/recipes/vol_mount_point.rb in the cache.
[2015-11-25T21:46:52+00:00] INFO: Storing updated cookbooks/opsworks_initial_setup/recipes/default.rb in the cache.
[2015-11-25T21:46:52+00:00] INFO: Storing updated cookbooks/opsworks_initial_setup/recipes/ldconfig.rb in the cache.
[2015-11-25T21:46:52+00:00] INFO: Storing updated cookbooks/opsworks_initial_setup/recipes/package_ntpd.rb in the cache.
[2015-11-25T21:46:52+00:00] INFO: Storing updated cookbooks/opsworks_initial_setup/recipes/remove_landscape.rb in the cache.
[2015-11-25T21:46:52+00:00] INFO: Storing updated cookbooks/opsworks_initial_setup/recipes/limits.rb in the cache.
[2015-11-25T21:46:52+00:00] INFO: Storing updated cookbooks/opsworks_initial_setup/recipes/package_procps.rb in the cache.
[2015-11-25T21:46:52+00:00] INFO: Storing updated cookbooks/opsworks_initial_setup/recipes/package_vim.rb in the cache.
[2015-11-25T21:46:52+00:00] INFO: Storing updated cookbooks/opsworks_initial_setup/libraries/autofs.rb in the cache.
[2015-11-25T21:46:52+00:00] INFO: Storing updated cookbooks/opsworks_initial_setup/attributes/default.rb in the cache.
[2015-11-25T21:46:52+00:00] INFO: Storing updated cookbooks/opsworks_initial_setup/attributes/customize.rb in the cache.
[2015-11-25T21:46:52+00:00] INFO: Storing updated cookbooks/opsworks_initial_setup/metadata.rb in the cache.
[2015-11-25T21:46:52+00:00] INFO: Storing updated cookbooks/opsworks_commons/resources/assets_installer.rb in the cache.
[2015-11-25T21:46:52+00:00] INFO: Storing updated cookbooks/opsworks_commons/providers/assets_installer.rb in the cache.
[2015-11-25T21:46:52+00:00] INFO: Storing updated cookbooks/opsworks_commons/recipes/gem_support_test.rb in the cache.
[2015-11-25T21:46:52+00:00] INFO: Storing updated cookbooks/opsworks_commons/recipes/chefgem_support_test.rb in the cache.
[2015-11-25T21:46:52+00:00] INFO: Storing updated cookbooks/opsworks_commons/libraries/monkey_patch_provider_mapping.rb in the cache.
[2015-11-25T21:46:52+00:00] INFO: Storing updated cookbooks/opsworks_commons/libraries/predicates.rb in the cache.
[2015-11-25T21:46:52+00:00] INFO: Storing updated cookbooks/opsworks_commons/libraries/monkey_patch_deploy_provider.rb in the cache.
[2015-11-25T21:46:52+00:00] INFO: Storing updated cookbooks/opsworks_commons/libraries/opsworks_instance_agent_config_parser.rb in the cache.
[2015-11-25T21:46:53+00:00] INFO: Storing updated cookbooks/opsworks_commons/libraries/monkey_patch_chefgem_resource.rb in the cache.
[2015-11-25T21:46:53+00:00] INFO: Storing updated cookbooks/opsworks_commons/libraries/shellout.rb in the cache.
[2015-11-25T21:46:53+00:00] INFO: Storing updated cookbooks/opsworks_commons/libraries/monkey_patch_rubygems_provider.rb in the cache.
[2015-11-25T21:46:53+00:00] INFO: Storing updated cookbooks/opsworks_commons/libraries/package_info.rb in the cache.
[2015-11-25T21:46:53+00:00] INFO: Storing updated cookbooks/opsworks_commons/libraries/activesupport_blank.rb in the cache.
[2015-11-25T21:46:53+00:00] INFO: Storing updated cookbooks/opsworks_commons/attributes/default.rb in the cache.
[2015-11-25T21:46:53+00:00] INFO: Storing updated cookbooks/opsworks_commons/attributes/customize.rb in the cache.
[2015-11-25T21:46:53+00:00] INFO: Storing updated cookbooks/opsworks_commons/metadata.rb in the cache.
[2015-11-25T21:46:53+00:00] INFO: Storing updated cookbooks/opsworks_berkshelf/resources/runner.rb in the cache.
[2015-11-25T21:46:53+00:00] INFO: Storing updated cookbooks/opsworks_berkshelf/providers/runner.rb in the cache.
[2015-11-25T21:46:53+00:00] INFO: Storing updated cookbooks/opsworks_berkshelf/recipes/purge.rb in the cache.
[2015-11-25T21:46:53+00:00] INFO: Storing updated cookbooks/opsworks_berkshelf/recipes/install.rb in the cache.
[2015-11-25T21:46:53+00:00] INFO: Storing updated cookbooks/opsworks_berkshelf/libraries/berkshelf.rb in the cache.
[2015-11-25T21:46:53+00:00] INFO: Storing updated cookbooks/opsworks_berkshelf/attributes/default.rb in the cache.
[2015-11-25T21:46:53+00:00] INFO: Storing updated cookbooks/opsworks_berkshelf/metadata.rb in the cache.
[2015-11-25T21:46:53+00:00] INFO: Storing updated cookbooks/dependencies/recipes/default.rb in the cache.
[2015-11-25T21:46:53+00:00] INFO: Storing updated cookbooks/dependencies/recipes/update.rb in the cache.
[2015-11-25T21:46:53+00:00] INFO: Storing updated cookbooks/dependencies/libraries/current_gem_version.rb in the cache.
[2015-11-25T21:46:53+00:00] INFO: Storing updated cookbooks/dependencies/attributes/default.rb in the cache.
[2015-11-25T21:46:53+00:00] INFO: Storing updated cookbooks/dependencies/attributes/customize.rb in the cache.
[2015-11-25T21:46:53+00:00] INFO: Storing updated cookbooks/dependencies/metadata.rb in the cache.
[2015-11-25T21:46:54+00:00] INFO: Storing updated cookbooks/ruby/recipes/default.rb in the cache.
[2015-11-25T21:46:54+00:00] INFO: Storing updated cookbooks/ruby/attributes/customize.rb in the cache.
[2015-11-25T21:46:54+00:00] INFO: Storing updated cookbooks/ruby/attributes/ruby.rb in the cache.
[2015-11-25T21:46:54+00:00] INFO: Storing updated cookbooks/ruby/metadata.rb in the cache.
[2015-11-25T21:46:54+00:00] INFO: Storing updated cookbooks/gem_support/recipes/default.rb in the cache.
[2015-11-25T21:46:54+00:00] INFO: Storing updated cookbooks/gem_support/libraries/current_gem_version.rb in the cache.
[2015-11-25T21:46:54+00:00] INFO: Storing updated cookbooks/gem_support/metadata.rb in the cache.
[2015-11-25T21:46:54+00:00] INFO: Storing updated cookbooks/packages/recipes/default.rb in the cache.
[2015-11-25T21:46:54+00:00] INFO: Storing updated cookbooks/packages/libraries/packages.rb in the cache.
[2015-11-25T21:46:54+00:00] INFO: Storing updated cookbooks/packages/attributes/packages.rb in the cache.
[2015-11-25T21:46:54+00:00] INFO: Storing updated cookbooks/packages/attributes/customize.rb in the cache.
[2015-11-25T21:46:54+00:00] INFO: Storing updated cookbooks/packages/metadata.rb in the cache.
[2015-11-25T21:46:54+00:00] INFO: Storing updated cookbooks/opsworks_nodejs/recipes/configure.rb in the cache.
[2015-11-25T21:46:54+00:00] INFO: Storing updated cookbooks/opsworks_nodejs/recipes/default.rb in the cache.
[2015-11-25T21:46:54+00:00] INFO: Storing updated cookbooks/opsworks_nodejs/recipes/create_env_file.rb in the cache.
[2015-11-25T21:46:54+00:00] INFO: Storing updated cookbooks/opsworks_nodejs/definitions/application_environment_file.rb in the cache.
[2015-11-25T21:46:54+00:00] INFO: Storing updated cookbooks/opsworks_nodejs/libraries/nodejs_configuration.rb in the cache.
[2015-11-25T21:46:54+00:00] INFO: Storing updated cookbooks/opsworks_nodejs/attributes/opsworks_nodejs.rb in the cache.
[2015-11-25T21:46:54+00:00] INFO: Storing updated cookbooks/opsworks_nodejs/attributes/customize.rb in the cache.
[2015-11-25T21:46:54+00:00] INFO: Storing updated cookbooks/opsworks_nodejs/metadata.rb in the cache.
[2015-11-25T21:46:54+00:00] INFO: Storing updated cookbooks/opsworks_bundler/recipes/default.rb in the cache.
[2015-11-25T21:46:54+00:00] INFO: Storing updated cookbooks/opsworks_bundler/attributes/bundler.rb in the cache.
[2015-11-25T21:46:55+00:00] INFO: Storing updated cookbooks/opsworks_bundler/attributes/customize.rb in the cache.
[2015-11-25T21:46:55+00:00] INFO: Storing updated cookbooks/opsworks_bundler/metadata.rb in the cache.
[2015-11-25T21:46:55+00:00] INFO: Storing updated cookbooks/opsworks_rubygems/recipes/default.rb in the cache.
[2015-11-25T21:46:55+00:00] INFO: Storing updated cookbooks/opsworks_rubygems/attributes/customize.rb in the cache.
[2015-11-25T21:46:55+00:00] INFO: Storing updated cookbooks/opsworks_rubygems/attributes/rubygems.rb in the cache.
[2015-11-25T21:46:55+00:00] INFO: Storing updated cookbooks/opsworks_rubygems/metadata.rb in the cache.
[2015-11-25T21:46:55+00:00] INFO: Storing updated cookbooks/deploy/recipes/aws-flow-ruby.rb in the cache.
[2015-11-25T21:46:55+00:00] INFO: Storing updated cookbooks/deploy/recipes/php-restart.rb in the cache.
[2015-11-25T21:46:55+00:00] INFO: Storing updated cookbooks/deploy/recipes/nodejs-rollback.rb in the cache.
[2015-11-25T21:46:55+00:00] INFO: Storing updated cookbooks/deploy/recipes/rails-restart.rb in the cache.
[2015-11-25T21:46:55+00:00] INFO: Storing updated cookbooks/deploy/recipes/java-restart.rb in the cache.
[2015-11-25T21:46:55+00:00] INFO: Storing updated cookbooks/deploy/recipes/nodejs.rb in the cache.
[2015-11-25T21:46:55+00:00] INFO: Storing updated cookbooks/deploy/recipes/mysql.rb in the cache.
[2015-11-25T21:46:55+00:00] INFO: Storing updated cookbooks/deploy/recipes/java-undeploy.rb in the cache.
[2015-11-25T21:46:55+00:00] INFO: Storing updated cookbooks/deploy/recipes/rails-rollback.rb in the cache.
[2015-11-25T21:46:55+00:00] INFO: Storing updated cookbooks/deploy/recipes/web-restart.rb in the cache.
[2015-11-25T21:46:55+00:00] INFO: Storing updated cookbooks/deploy/recipes/java-rollback.rb in the cache.
[2015-11-25T21:46:55+00:00] INFO: Storing updated cookbooks/deploy/recipes/nodejs-undeploy.rb in the cache.
[2015-11-25T21:46:55+00:00] INFO: Storing updated cookbooks/deploy/recipes/java-stop.rb in the cache.
[2015-11-25T21:46:55+00:00] INFO: Storing updated cookbooks/deploy/recipes/nodejs-stop.rb in the cache.
[2015-11-25T21:46:56+00:00] INFO: Storing updated cookbooks/deploy/recipes/rails-undeploy.rb in the cache.
[2015-11-25T21:46:56+00:00] INFO: Storing updated cookbooks/deploy/recipes/default.rb in the cache.
[2015-11-25T21:46:56+00:00] INFO: Storing updated cookbooks/deploy/recipes/nodejs-restart.rb in the cache.
[2015-11-25T21:46:56+00:00] INFO: Storing updated cookbooks/deploy/recipes/php.rb in the cache.
[2015-11-25T21:46:56+00:00] INFO: Storing updated cookbooks/deploy/recipes/rails.rb in the cache.
[2015-11-25T21:46:56+00:00] INFO: Storing updated cookbooks/deploy/recipes/web.rb in the cache.
[2015-11-25T21:46:56+00:00] INFO: Storing updated cookbooks/deploy/recipes/web-undeploy.rb in the cache.
[2015-11-25T21:46:56+00:00] INFO: Storing updated cookbooks/deploy/recipes/java.rb in the cache.
[2015-11-25T21:46:56+00:00] INFO: Storing updated cookbooks/deploy/recipes/php-undeploy.rb in the cache.
[2015-11-25T21:46:56+00:00] INFO: Storing updated cookbooks/deploy/definitions/opsworks_deploy_user.rb in the cache.
[2015-11-25T21:46:56+00:00] INFO: Storing updated cookbooks/deploy/definitions/opsworks_nodejs.rb in the cache.
[2015-11-25T21:46:56+00:00] INFO: Storing updated cookbooks/deploy/definitions/opsworks_rails.rb in the cache.
[2015-11-25T21:46:56+00:00] INFO: Storing updated cookbooks/deploy/definitions/opsworks_deploy.rb in the cache.
[2015-11-25T21:46:56+00:00] INFO: Storing updated cookbooks/deploy/definitions/opsworks_deploy_dir.rb in the cache.
[2015-11-25T21:46:56+00:00] INFO: Storing updated cookbooks/deploy/libraries/escape_characters.rb in the cache.
[2015-11-25T21:46:56+00:00] INFO: Storing updated cookbooks/deploy/attributes/logrotate.rb in the cache.
[2015-11-25T21:46:56+00:00] INFO: Storing updated cookbooks/deploy/attributes/default.rb in the cache.
[2015-11-25T21:46:56+00:00] INFO: Storing updated cookbooks/deploy/attributes/deploy.rb in the cache.
[2015-11-25T21:46:56+00:00] INFO: Storing updated cookbooks/deploy/attributes/customize.rb in the cache.
[2015-11-25T21:46:56+00:00] INFO: Storing updated cookbooks/deploy/attributes/rails_stack.rb in the cache.
[2015-11-25T21:46:57+00:00] INFO: Storing updated cookbooks/deploy/metadata.rb in the cache.
[2015-11-25T21:46:57+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_deflate.rb in the cache.
[2015-11-25T21:46:57+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_setenvif.rb in the cache.
[2015-11-25T21:46:57+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_dir.rb in the cache.
[2015-11-25T21:46:57+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_authnz_ldap.rb in the cache.
[2015-11-25T21:46:57+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_rewrite.rb in the cache.
[2015-11-25T21:46:57+00:00] INFO: Storing updated cookbooks/apache2/recipes/uninstall.rb in the cache.
[2015-11-25T21:46:57+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_php5.rb in the cache.
[2015-11-25T21:46:57+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_authz_default.rb in the cache.
[2015-11-25T21:46:57+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_headers.rb in the cache.
[2015-11-25T21:46:57+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_cgi.rb in the cache.
[2015-11-25T21:46:57+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_authn_file.rb in the cache.
[2015-11-25T21:46:57+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_expires.rb in the cache.
[2015-11-25T21:46:57+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_authz_groupfile.rb in the cache.
[2015-11-25T21:46:57+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_proxy.rb in the cache.
[2015-11-25T21:46:57+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_negotiation.rb in the cache.
[2015-11-25T21:46:57+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_authz_user.rb in the cache.
[2015-11-25T21:46:58+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_log_config.rb in the cache.
[2015-11-25T21:46:58+00:00] INFO: Storing updated cookbooks/apache2/recipes/service.rb in the cache.
[2015-11-25T21:46:58+00:00] INFO: Storing updated cookbooks/apache2/recipes/logrotate.rb in the cache.
[2015-11-25T21:46:58+00:00] INFO: Storing updated cookbooks/apache2/recipes/default.rb in the cache.
[2015-11-25T21:46:58+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_authz_host.rb in the cache.
[2015-11-25T21:46:58+00:00] INFO: Storing updated cookbooks/apache2/recipes/stop.rb in the cache.
[2015-11-25T21:46:58+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_dav_svn.rb in the cache.
[2015-11-25T21:46:58+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_env.rb in the cache.
[2015-11-25T21:46:58+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_dav.rb in the cache.
[2015-11-25T21:46:58+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_mime.rb in the cache.
[2015-11-25T21:46:58+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_auth_basic.rb in the cache.
[2015-11-25T21:46:58+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_python.rb in the cache.
[2015-11-25T21:46:58+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_auth_digest.rb in the cache.
[2015-11-25T21:46:58+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_status.rb in the cache.
[2015-11-25T21:46:58+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_fcgid.rb in the cache.
[2015-11-25T21:46:58+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_ldap.rb in the cache.
[2015-11-25T21:46:58+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_autoindex.rb in the cache.
[2015-11-25T21:46:58+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_alias.rb in the cache.
[2015-11-25T21:46:59+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_proxy_http.rb in the cache.
[2015-11-25T21:46:59+00:00] INFO: Storing updated cookbooks/apache2/recipes/mod_ssl.rb in the cache.
[2015-11-25T21:46:59+00:00] INFO: Storing updated cookbooks/apache2/definitions/web_app.rb in the cache.
[2015-11-25T21:46:59+00:00] INFO: Storing updated cookbooks/apache2/definitions/apache_conf.rb in the cache.
[2015-11-25T21:46:59+00:00] INFO: Storing updated cookbooks/apache2/definitions/apache_module.rb in the cache.
[2015-11-25T21:46:59+00:00] INFO: Storing updated cookbooks/apache2/definitions/apache_site.rb in the cache.
[2015-11-25T21:46:59+00:00] INFO: Storing updated cookbooks/apache2/attributes/apache.rb in the cache.
[2015-11-25T21:46:59+00:00] INFO: Storing updated cookbooks/apache2/attributes/customize.rb in the cache.
[2015-11-25T21:46:59+00:00] INFO: Storing updated cookbooks/apache2/README.rdoc in the cache.
[2015-11-25T21:46:59+00:00] INFO: Storing updated cookbooks/apache2/metadata.rb in the cache.
[2015-11-25T21:46:59+00:00] INFO: Storing updated cookbooks/mod_php5_apache2/recipes/mysql_adapter.rb in the cache.
[2015-11-25T21:46:59+00:00] INFO: Storing updated cookbooks/mod_php5_apache2/recipes/default.rb in the cache.
[2015-11-25T21:46:59+00:00] INFO: Storing updated cookbooks/mod_php5_apache2/recipes/php.rb in the cache.
[2015-11-25T21:46:59+00:00] INFO: Storing updated cookbooks/mod_php5_apache2/recipes/postgresql_adapter.rb in the cache.
[2015-11-25T21:46:59+00:00] INFO: Storing updated cookbooks/mod_php5_apache2/attributes/default.rb in the cache.
[2015-11-25T21:46:59+00:00] INFO: Storing updated cookbooks/mod_php5_apache2/attributes/customize.rb in the cache.
[2015-11-25T21:46:59+00:00] INFO: Storing updated cookbooks/mod_php5_apache2/metadata.rb in the cache.
[2015-11-25T21:46:59+00:00] INFO: Storing updated cookbooks/nginx/recipes/uninstall.rb in the cache.
[2015-11-25T21:46:59+00:00] INFO: Storing updated cookbooks/nginx/recipes/service.rb in the cache.
[2015-11-25T21:47:00+00:00] INFO: Storing updated cookbooks/nginx/recipes/default.rb in the cache.
[2015-11-25T21:47:00+00:00] INFO: Storing updated cookbooks/nginx/recipes/stop.rb in the cache.
[2015-11-25T21:47:00+00:00] INFO: Storing updated cookbooks/nginx/definitions/nginx_web_app.rb in the cache.
[2015-11-25T21:47:00+00:00] INFO: Storing updated cookbooks/nginx/attributes/nginx.rb in the cache.
[2015-11-25T21:47:00+00:00] INFO: Storing updated cookbooks/nginx/attributes/customize.rb in the cache.
[2015-11-25T21:47:00+00:00] INFO: Storing updated cookbooks/nginx/metadata.rb in the cache.
[2015-11-25T21:47:00+00:00] INFO: Storing updated cookbooks/ssh_users/recipes/default.rb in the cache.
[2015-11-25T21:47:00+00:00] INFO: Storing updated cookbooks/ssh_users/libraries/user.rb in the cache.
[2015-11-25T21:47:00+00:00] INFO: Storing updated cookbooks/ssh_users/attributes/default.rb in the cache.
[2015-11-25T21:47:00+00:00] INFO: Storing updated cookbooks/ssh_users/attributes/customize.rb in the cache.
[2015-11-25T21:47:00+00:00] INFO: Storing updated cookbooks/ssh_users/metadata.rb in the cache.
[2015-11-25T21:47:00+00:00] INFO: Storing updated cookbooks/opsworks_agent_monit/recipes/reload_systemd.rb in the cache.
[2015-11-25T21:47:00+00:00] INFO: Storing updated cookbooks/opsworks_agent_monit/recipes/service.rb in the cache.
[2015-11-25T21:47:00+00:00] INFO: Storing updated cookbooks/opsworks_agent_monit/recipes/default.rb in the cache.
[2015-11-25T21:47:00+00:00] INFO: Storing updated cookbooks/opsworks_agent_monit/recipes/stop.rb in the cache.
[2015-11-25T21:47:00+00:00] INFO: Storing updated cookbooks/opsworks_agent_monit/attributes/default.rb in the cache.
[2015-11-25T21:47:00+00:00] INFO: Storing updated cookbooks/opsworks_agent_monit/attributes/customize.rb in the cache.
[2015-11-25T21:47:00+00:00] INFO: Storing updated cookbooks/opsworks_agent_monit/metadata.rb in the cache.
[2015-11-25T21:47:00+00:00] INFO: Storing updated cookbooks/passenger_apache2/recipes/mod_rails.rb in the cache.
[2015-11-25T21:47:00+00:00] INFO: Storing updated cookbooks/passenger_apache2/recipes/default.rb in the cache.
[2015-11-25T21:47:00+00:00] INFO: Storing updated cookbooks/passenger_apache2/recipes/rails.rb in the cache.
[2015-11-25T21:47:01+00:00] INFO: Storing updated cookbooks/passenger_apache2/definitions/passenger_web_app.rb in the cache.
[2015-11-25T21:47:01+00:00] INFO: Storing updated cookbooks/passenger_apache2/attributes/customize.rb in the cache.
[2015-11-25T21:47:01+00:00] INFO: Storing updated cookbooks/passenger_apache2/attributes/passenger.rb in the cache.
[2015-11-25T21:47:01+00:00] INFO: Storing updated cookbooks/passenger_apache2/README.rdoc in the cache.
[2015-11-25T21:47:01+00:00] INFO: Storing updated cookbooks/passenger_apache2/metadata.rb in the cache.
[2015-11-25T21:47:01+00:00] INFO: Storing updated cookbooks/unicorn/recipes/default.rb in the cache.
[2015-11-25T21:47:01+00:00] INFO: Storing updated cookbooks/unicorn/recipes/stop.rb in the cache.
[2015-11-25T21:47:01+00:00] INFO: Storing updated cookbooks/unicorn/recipes/rails.rb in the cache.
[2015-11-25T21:47:01+00:00] INFO: Storing updated cookbooks/unicorn/definitions/unicorn_web_app.rb in the cache.
[2015-11-25T21:47:01+00:00] INFO: Storing updated cookbooks/unicorn/attributes/default.rb in the cache.
[2015-11-25T21:47:01+00:00] INFO: Storing updated cookbooks/unicorn/attributes/customize.rb in the cache.
[2015-11-25T21:47:01+00:00] INFO: Storing updated cookbooks/unicorn/metadata.rb in the cache.
[2015-11-25T21:47:01+00:00] INFO: Storing updated cookbooks/opsworks_java/recipes/apache_tomcat_bind.rb in the cache.
[2015-11-25T21:47:01+00:00] INFO: Storing updated cookbooks/opsworks_java/recipes/mysql_connector.rb in the cache.
[2015-11-25T21:47:01+00:00] INFO: Storing updated cookbooks/opsworks_java/recipes/setup.rb in the cache.
[2015-11-25T21:47:01+00:00] INFO: Storing updated cookbooks/opsworks_java/recipes/tomcat_service.rb in the cache.
[2015-11-25T21:47:01+00:00] INFO: Storing updated cookbooks/opsworks_java/recipes/jvm_install.rb in the cache.
[2015-11-25T21:47:01+00:00] INFO: Storing updated cookbooks/opsworks_java/recipes/tomcat_container_config.rb in the cache.
[2015-11-25T21:47:01+00:00] INFO: Storing updated cookbooks/opsworks_java/recipes/tomcat_install.rb in the cache.
[2015-11-25T21:47:01+00:00] INFO: Storing updated cookbooks/opsworks_java/recipes/tomcat_setup.rb in the cache.
[2015-11-25T21:47:02+00:00] INFO: Storing updated cookbooks/opsworks_java/recipes/web_app.rb in the cache.
[2015-11-25T21:47:02+00:00] INFO: Storing updated cookbooks/opsworks_java/recipes/postgresql_connector.rb in the cache.
[2015-11-25T21:47:02+00:00] INFO: Storing updated cookbooks/opsworks_java/recipes/remove_root_webapp.rb in the cache.
[2015-11-25T21:47:02+00:00] INFO: Storing updated cookbooks/opsworks_java/recipes/configure.rb in the cache.
[2015-11-25T21:47:02+00:00] INFO: Storing updated cookbooks/opsworks_java/recipes/context.rb in the cache.
[2015-11-25T21:47:02+00:00] INFO: Storing updated cookbooks/opsworks_java/attributes/default.rb in the cache.
[2015-11-25T21:47:02+00:00] INFO: Storing updated cookbooks/opsworks_java/attributes/customize.rb in the cache.
[2015-11-25T21:47:02+00:00] INFO: Storing updated cookbooks/opsworks_java/metadata.rb in the cache.
[2015-11-25T21:47:02+00:00] INFO: Storing updated cookbooks/php/recipes/configure.rb in the cache.
[2015-11-25T21:47:02+00:00] INFO: Storing updated cookbooks/php/attributes/default.rb in the cache.
[2015-11-25T21:47:02+00:00] INFO: Storing updated cookbooks/php/attributes/customize.rb in the cache.
[2015-11-25T21:47:02+00:00] INFO: Storing updated cookbooks/php/metadata.rb in the cache.
[2015-11-25T21:47:02+00:00] INFO: Storing updated cookbooks/mysql/recipes/client_install.rb in the cache.
[2015-11-25T21:47:02+00:00] INFO: Storing updated cookbooks/mysql/recipes/config.rb in the cache.
[2015-11-25T21:47:02+00:00] INFO: Storing updated cookbooks/mysql/recipes/server.rb in the cache.
[2015-11-25T21:47:02+00:00] INFO: Storing updated cookbooks/mysql/recipes/ebs.rb in the cache.
[2015-11-25T21:47:02+00:00] INFO: Storing updated cookbooks/mysql/recipes/apparmor.rb in the cache.
[2015-11-25T21:47:02+00:00] INFO: Storing updated cookbooks/mysql/recipes/service.rb in the cache.
[2015-11-25T21:47:02+00:00] INFO: Storing updated cookbooks/mysql/recipes/client.rb in the cache.
[2015-11-25T21:47:02+00:00] INFO: Storing updated cookbooks/mysql/recipes/stop.rb in the cache.
[2015-11-25T21:47:03+00:00] INFO: Storing updated cookbooks/mysql/recipes/prepare.rb in the cache.
[2015-11-25T21:47:03+00:00] INFO: Storing updated cookbooks/mysql/attributes/server.rb in the cache.
[2015-11-25T21:47:03+00:00] INFO: Storing updated cookbooks/mysql/attributes/customize.rb in the cache.
[2015-11-25T21:47:03+00:00] INFO: Storing updated cookbooks/mysql/metadata.rb in the cache.
[2015-11-25T21:47:03+00:00] INFO: Storing updated cookbooks/opsworks_aws_flow_ruby/recipes/setup.rb in the cache.
[2015-11-25T21:47:03+00:00] INFO: Storing updated cookbooks/opsworks_aws_flow_ruby/recipes/configure.rb in the cache.
[2015-11-25T21:47:03+00:00] INFO: Storing updated cookbooks/opsworks_aws_flow_ruby/definitions/opsworks_aws_flow_ruby.rb in the cache.
[2015-11-25T21:47:03+00:00] INFO: Storing updated cookbooks/opsworks_aws_flow_ruby/attributes/default.rb in the cache.
[2015-11-25T21:47:03+00:00] INFO: Storing updated cookbooks/opsworks_aws_flow_ruby/metadata.rb in the cache.
[2015-11-25T21:47:03+00:00] INFO: Storing updated cookbooks/rails/recipes/configure.rb in the cache.
[2015-11-25T21:47:03+00:00] INFO: Storing updated cookbooks/rails/libraries/rails_configuration.rb in the cache.
[2015-11-25T21:47:03+00:00] INFO: Storing updated cookbooks/rails/attributes/customize.rb in the cache.
[2015-11-25T21:47:03+00:00] INFO: Storing updated cookbooks/rails/attributes/rails.rb in the cache.
[2015-11-25T21:47:03+00:00] INFO: Storing updated cookbooks/rails/metadata.rb in the cache.
[2015-11-25T21:47:04+00:00] INFO: Install berkself dependency: git
[2015-11-25T21:47:04+00:00] WARN: Cloning resource attributes for package[git-core] from prior resource (CHEF-3694)
[2015-11-25T21:47:04+00:00] WARN: Previous package[git-core]: /var/lib/aws/opsworks/cache.stage1/cookbooks/scm_helper/libraries/package.rb:9:in `ensure_scm_package_installed'
[2015-11-25T21:47:04+00:00] WARN: Current package[git-core]: /var/lib/aws/opsworks/cache.stage1/cookbooks/scm_helper/libraries/package.rb:9:in `ensure_scm_package_installed'
[2015-11-25T21:47:04+00:00] WARN: Cloning resource attributes for gem_package[berkshelf] from prior resource (CHEF-3694)
[2015-11-25T21:47:04+00:00] WARN: Previous gem_package[berkshelf]: /var/lib/aws/opsworks/cache.stage1/cookbooks/opsworks_berkshelf/recipes/purge.rb:6:in `from_file'
[2015-11-25T21:47:04+00:00] WARN: Current gem_package[berkshelf]: /var/lib/aws/opsworks/cache.stage1/cookbooks/opsworks_berkshelf/recipes/install.rb:39:in `from_file'
[2015-11-25T21:47:04+00:00] INFO: Not needed with Chef 11.x (x >= 8) anymore.
[2015-11-25T21:47:04+00:00] INFO: Processing package[git-core] action install (opsworks_custom_cookbooks::checkout line 9)
[2015-11-25T21:47:11+00:00] INFO: Processing directory[/root/.ssh] action create (opsworks_custom_cookbooks::checkout line 8)
[2015-11-25T21:47:11+00:00] INFO: Processing file[/root/.ssh/config] action touch (opsworks_custom_cookbooks::checkout line 16)
[2015-11-25T21:47:11+00:00] INFO: file[/root/.ssh/config] created file /root/.ssh/config
[2015-11-25T21:47:11+00:00] INFO: file[/root/.ssh/config] owner changed to 0
[2015-11-25T21:47:11+00:00] INFO: file[/root/.ssh/config] group changed to 0
[2015-11-25T21:47:11+00:00] INFO: file[/root/.ssh/config] mode changed to 600
[2015-11-25T21:47:11+00:00] INFO: file[/root/.ssh/config] updated atime and mtime to 2015-11-25 21:47:11 +0000
[2015-11-25T21:47:11+00:00] INFO: Processing execute[echo 'StrictHostKeyChecking no' > /root/.ssh/config] action run (opsworks_custom_cookbooks::checkout line 23)
[2015-11-25T21:47:11+00:00] INFO: execute[echo 'StrictHostKeyChecking no' > /root/.ssh/config] ran successfully
[2015-11-25T21:47:11+00:00] INFO: Processing template[/root/.ssh/id_dsa] action create (opsworks_custom_cookbooks::checkout line 27)
[2015-11-25T21:47:11+00:00] INFO: template[/root/.ssh/id_dsa] created file /root/.ssh/id_dsa
[2015-11-25T21:47:11+00:00] INFO: template[/root/.ssh/id_dsa] updated file contents /root/.ssh/id_dsa
[2015-11-25T21:47:11+00:00] INFO: template[/root/.ssh/id_dsa] owner changed to 0
[2015-11-25T21:47:11+00:00] INFO: template[/root/.ssh/id_dsa] group changed to 0
[2015-11-25T21:47:11+00:00] INFO: template[/root/.ssh/id_dsa] mode changed to 600
[2015-11-25T21:47:11+00:00] INFO: Processing git[Download Custom Cookbooks] action checkout (opsworks_custom_cookbooks::checkout line 29)
[2015-11-25T21:47:11+00:00] INFO: git[Download Custom Cookbooks] cloning repo git@github.com:TouchBistro/opsworks-cookbooks.git to /opt/aws/opsworks/current/site-cookbooks
[2015-11-25T21:47:11+00:00] INFO: git[Download Custom Cookbooks] checked out branch: master onto: deploy reference: 4cfc436e6b36a31e2dca07e0a9ea22daf16abe0e
[2015-11-25T21:47:11+00:00] INFO: git[Download Custom Cookbooks] synchronizing git submodules
[2015-11-25T21:47:11+00:00] INFO: git[Download Custom Cookbooks] enabling git submodules
[2015-11-25T21:47:11+00:00] INFO: Processing ruby_block[Move single cookbook contents into appropriate subdirectory] action run (opsworks_custom_cookbooks::checkout line 64)
[2015-11-25T21:47:11+00:00] INFO: Processing package[opsworks-berkshelf] action remove (opsworks_berkshelf::purge line 1)
[2015-11-25T21:47:12+00:00] INFO: Processing gem_package[berkshelf] action purge (opsworks_berkshelf::purge line 6)
[2015-11-25T21:47:12+00:00] INFO: Processing log[delete repo] action nothing (opsworks_berkshelf::purge line 16)
[2015-11-25T21:47:12+00:00] INFO: Processing directory[/opt/aws/opsworks/current/berkshelf-cookbooks] action delete (opsworks_berkshelf::purge line 21)
[2015-11-25T21:47:12+00:00] INFO: Processing log[downloading] action nothing (opsworks_berkshelf::install line 8)
[2015-11-25T21:47:12+00:00] INFO: Processing package[git-core] action install (opsworks_berkshelf::install line 9)
[2015-11-25T21:47:12+00:00] INFO: Processing opsworks_commons_assets_installer[Try to install berkshelf prebuilt package] action install (opsworks_berkshelf::install line 18)
[ Wed, 25 Nov 2015 21:47:12 +0000 ] downloader: Successfully created temporary download directory. (/var/lib/aws/opsworks/cache.stage1/opsworks_assets/opsworks-berkshelf.3HyEPX01)
[ Wed, 25 Nov 2015 21:47:13 +0000 ] downloader: File size test passed.
[ Wed, 25 Nov 2015 21:47:13 +0000 ] downloader: Checksum proof skipped.
[ Wed, 25 Nov 2015 21:47:13 +0000 ] downloader: Successfully downloaded https://opsworks-instance-assets-us-east-1.s3.amazonaws.com/packages/ubuntu/14.04/opsworks-berkshelf_3.1.1-1_amd64.deb
[2015-11-25T21:47:13+00:00] WARN: Cloning resource attributes for package[opsworks-berkshelf] from prior resource (CHEF-3694)
[2015-11-25T21:47:13+00:00] WARN: Previous package[opsworks-berkshelf]: /var/lib/aws/opsworks/cache.stage1/cookbooks/opsworks_berkshelf/recipes/purge.rb:1:in `from_file'
[2015-11-25T21:47:13+00:00] WARN: Current package[opsworks-berkshelf]: /var/lib/aws/opsworks/cache.stage1/cookbooks/opsworks_commons/providers/assets_installer.rb:6:in `block (2 levels) in class_from_file'
[2015-11-25T21:47:13+00:00] INFO: Processing package[opsworks-berkshelf] action install (/var/lib/aws/opsworks/cache.stage1/cookbooks/opsworks_commons/providers/assets_installer.rb line 6)
rm -rf /var/lib/aws/opsworks/cache.stage1/opsworks_assets/opsworks-berkshelf.3HyEPX01
[2015-11-25T21:47:19+00:00] INFO: Processing package[opsworks-berkshelf] action nothing (/var/lib/aws/opsworks/cache.stage1/cookbooks/opsworks_commons/providers/assets_installer.rb line 6)
[2015-11-25T21:47:19+00:00] INFO: Processing log[installing gem] action nothing (opsworks_berkshelf::install line 32)
[2015-11-25T21:47:19+00:00] INFO: Processing gem_package[berkshelf] action install (opsworks_berkshelf::install line 39)
[2015-11-25T21:47:19+00:00] INFO: Processing opsworks_berkshelf_runner[Install berkshelf cookbooks] action berks_install (opsworks_berkshelf::install line 54)
[2015-11-25T21:47:19+00:00] WARN: Cloning resource attributes for directory[/opt/aws/opsworks/current/berkshelf-cookbooks] from prior resource (CHEF-3694)
[2015-11-25T21:47:19+00:00] WARN: Previous directory[/opt/aws/opsworks/current/berkshelf-cookbooks]: /var/lib/aws/opsworks/cache.stage1/cookbooks/opsworks_berkshelf/recipes/purge.rb:21:in `from_file'
[2015-11-25T21:47:19+00:00] WARN: Current directory[/opt/aws/opsworks/current/berkshelf-cookbooks]: /var/lib/aws/opsworks/cache.stage1/cookbooks/opsworks_berkshelf/providers/runner.rb:2:in `block in class_from_file'
[2015-11-25T21:47:19+00:00] INFO: Processing directory[/opt/aws/opsworks/current/berkshelf-cookbooks] action delete (/var/lib/aws/opsworks/cache.stage1/cookbooks/opsworks_berkshelf/providers/runner.rb line 2)
[2015-11-25T21:47:19+00:00] INFO: Processing ruby_block[Install the cookbooks specified in the Berksfile and their dependencies] action run (/var/lib/aws/opsworks/cache.stage1/cookbooks/opsworks_berkshelf/providers/runner.rb line 11)
================================================================================
Error executing action `run` on resource 'ruby_block[Install the cookbooks specified in the Berksfile and their dependencies]'
================================================================================
Mixlib::ShellOut::ShellCommandFailed
------------------------------------
Expected process to exit with [0], but received '1'
---- Begin output of /opt/aws/opsworks/local/bin/berks vendor /opt/aws/opsworks/current/berkshelf-cookbooks ----
STDOUT: Resolving cookbook dependencies...
Fetching 'application_ruby' from git://github.com/D1plo1d/application_ruby.git (at master)
Fetching 'ark' from git://github.com/burtlo/ark.git (at master)
Fetching 'bluepill' from git://github.com/opscode-cookbooks/bluepill.git (at master)
Fetching 'build-essential' from git://github.com/opscode-cookbooks/build-essential.git (at master)
Fetching 'elasticsearch' from git://github.com/D1plo1d/cookbook-elasticsearch.git (at master)
Fetching 'java' from git://github.com/D1plo1d/java.git (at patch-1)
Fetching 'monit' from git://github.com/apsoto/monit.git (at master)
Fetching 'newrelic-sysmond' from git://github.com/phlipper/chef-newrelic-sysmond.git (at master)
Fetching 'nginx' from git://github.com/switchflip/nginx.git (at master)
Fetching 'opsworks-elastic-search' from git://github.com/D1plo1d/opsworks-elasticsearch-cookbook.git (at master)
Fetching 'opsworks-resque' from git://github.com/D1plo1d/opsworks-resque.git (at master)
Fetching 'opsworks-resque-scheduler' from git://github.com/D1plo1d/opsworks-resque-scheduler.git (at master)
Fetching 'python' from git://github.com/poise/python.git (at master)
Fetching 's3_asset_manifest' from git://github.com/touchbistro/opsworks-cookbooks.git (at master/s3_asset_manifest)
Fetching 'ssl-crt' from git://github.com/switchflip/ssl-crt-cookbook.git (at master)
Fetching 'tar' from git://github.com/gofullstack/tar-cookbook.git (at master)
Fetching 'touchbistro-elasticsearch' from git://github.com/touchbistro/touchbistro-elasticsearch-cookbook.git (at master)
Fetching 'touchbistro-nginx-loadbalancer' from git://github.com/TouchBistro/touchbistro-nginx-loadbalancer.git (at master)
Fetching 'touchbistro-rails' from git://github.com/touchbistro/touchbistro-rails-cookbook.git (at master)
Fetching 'unicorn' from git://github.com/D1plo1d/unicorn.git (at master)
Fetching cookbook index from https://api.berkshelf.com...
Installing apache2 (3.1.0)
Installing application (4.1.6)
Using application_ruby (3.0.2) from git://github.com/D1plo1d/application_ruby.git (at master)
Installing apt (2.9.2)
Using ark (0.9.1) from git://github.com/burtlo/ark.git (at master)
Using bluepill (2.4.1) from git://github.com/opscode-cookbooks/bluepill.git (at master)
Installing bsw_gpg (0.1.6)
Using build-essential (2.2.4) from git://github.com/opscode-cookbooks/build-essential.git (at master)
Installing chef_handler (1.2.0)
Using elasticsearch (0.0.1) from git://github.com/D1plo1d/cookbook-elasticsearch.git (at master)
Using java (1.27.0) from git://github.com/D1plo1d/java.git (at patch-1)
Installing logrotate (1.9.2)
Installing maven (2.0.1)
Using monit (0.7.5) from git://github.com/apsoto/monit.git (at master)
Using newrelic-sysmond (2.0.0) from git://github.com/phlipper/chef-newrelic-sysmond.git (at master)
Using nginx (2.7.4) from git://github.com/switchflip/nginx.git (at master)
Installing ohai (2.0.4)
Using opsworks-elastic-search (1.0.0) from git://github.com/D1plo1d/opsworks-elasticsearch-cookbook.git (at master)
Using opsworks-resque (0.1.0) from git://github.com/D1plo1d/opsworks-resque.git (at master)
Using opsworks-resque-scheduler (0.1.0) from git://github.com/D1plo1d/opsworks-resque-scheduler.git (at master)
Installing packagecloud (0.1.1)
Installing partial_search (1.0.9)
Installing passenger_apache2 (2.3.0)
Using python (1.4.7) from git://github.com/poise/python.git (at master)
Installing rsyslog (2.1.0)
Installing ruby_build (0.8.0)
Installing runit (1.7.4)
Using s3_asset_manifest (1.0.0) from git://github.com/touchbistro/opsworks-cookbooks.git (at master/s3_asset_manifest)
Installing ssh_known_hosts (2.0.0)
Using ssl-crt (0.1.0) from git://github.com/switchflip/ssl-crt-cookbook.git (at master)
Using tar (0.7.0) from git://github.com/gofullstack/tar-cookbook.git (at master)
Using touchbistro-elasticsearch (0.1.0) from git://github.com/touchbistro/touchbistro-elasticsearch-cookbook.git (at master)
Using touchbistro-nginx-loadbalancer (0.1.0) from git://github.com/TouchBistro/touchbistro-nginx-loadbalancer.git (at master)
Using touchbistro-rails (0.1.0) from git://github.com/touchbistro/touchbistro-rails-cookbook.git (at master)
Using unicorn (2.0.0) from git://github.com/D1plo1d/unicorn.git (at master)
Installing user (0.4.2)
Installing vim (2.0.0)
Installing windows (1.38.4)
Installing yum (3.8.2)
Installing yum-epel (0.6.5)
E, [2015-11-25T21:49:41.131336 #4447] ERROR -- : Actor crashed!
Errno::ETIMEDOUT: Connection timed out - connect(2)
/opt/aws/opsworks/local/lib/ruby/2.0.0/net/http.rb:878:in `initialize'
/opt/aws/opsworks/local/lib/ruby/2.0.0/net/http.rb:878:in `open'
/opt/aws/opsworks/local/lib/ruby/2.0.0/net/http.rb:878:in `block in connect'
/opt/aws/opsworks/local/lib/ruby/2.0.0/timeout.rb:52:in `timeout'
/opt/aws/opsworks/local/lib/ruby/2.0.0/net/http.rb:877:in `connect'
/opt/aws/opsworks/local/lib/ruby/2.0.0/net/http.rb:862:in `do_start'
/opt/aws/opsworks/local/lib/ruby/2.0.0/net/http.rb:851:in `start'
/opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:313:in `open_http'
/opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:709:in `buffer_open'
/opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:210:in `block in open_loop'
/opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:208:in `catch'
/opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:208:in `open_loop'
/opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:149:in `open_uri'
/opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:689:in `open'
/opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:34:in `open'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/community_rest.rb:182:in `block in stream'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/retryable-1.3.5/lib/retryable.rb:17:in `retryable'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/community_rest.rb:181:in `stream'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/community_rest.rb:100:in `download'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/downloader.rb:53:in `try_download'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/downloader.rb:33:in `block in download'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/downloader.rb:32:in `each'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/downloader.rb:32:in `download'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/installer.rb:101:in `install'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:26:in `public_send'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:26:in `dispatch'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:63:in `dispatch'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/cell.rb:60:in `block in invoke'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/cell.rb:71:in `block in task'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:362:in `block in task'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks.rb:55:in `block in initialize'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks/task_fiber.rb:15:in `block in create'
(celluloid):0:in `remote procedure call'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:92:in `value'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/proxies/sync_proxy.rb:33:in `method_missing'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/proxies/cell_proxy.rb:17:in `_send_'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/pool_manager.rb:41:in `_send_'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/pool_manager.rb:123:in `method_missing'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:26:in `public_send'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:26:in `dispatch'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:63:in `dispatch'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/cell.rb:60:in `block in invoke'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/cell.rb:71:in `block in task'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:362:in `block in task'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks.rb:55:in `block in initialize'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks/task_fiber.rb:15:in `block in create'
E, [2015-11-25T21:49:41.135947 #4447] ERROR -- : Actor crashed!
RuntimeError: wtf
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:195:in `block (2 levels) in linking_request'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:177:in `loop'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:177:in `block in linking_request'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks.rb:104:in `exclusive'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid.rb:414:in `exclusive'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:172:in `linking_request'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:56:in `monitor'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:67:in `link'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid.rb:179:in `new_link'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/pool_manager.rb:113:in `__crash_handler__'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/cell.rb:15:in `block in call'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/cell.rb:71:in `block in task'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:362:in `block in task'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks.rb:55:in `block in initialize'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks/task_fiber.rb:15:in `block in create'
E, [2015-11-25T21:49:41.136927 #4447] ERROR -- : Actor crashed!
RuntimeError: wtf
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:195:in `block (2 levels) in linking_request'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:177:in `loop'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:177:in `block in linking_request'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks.rb:104:in `exclusive'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid.rb:414:in `exclusive'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:172:in `linking_request'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:56:in `monitor'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:67:in `link'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid.rb:179:in `new_link'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/pool_manager.rb:113:in `__crash_handler__'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/cell.rb:15:in `block in call'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/cell.rb:71:in `block in task'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:362:in `block in task'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks.rb:55:in `block in initialize'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks/task_fiber.rb:15:in `block in create'
STDERR: /opt/aws/opsworks/local/lib/ruby/2.0.0/net/http.rb:878:in `initialize': Connection timed out - connect(2) (Errno::ETIMEDOUT)
from /opt/aws/opsworks/local/lib/ruby/2.0.0/net/http.rb:878:in `open'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/net/http.rb:878:in `block in connect'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/timeout.rb:52:in `timeout'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/net/http.rb:877:in `connect'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/net/http.rb:862:in `do_start'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/net/http.rb:851:in `start'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:313:in `open_http'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:709:in `buffer_open'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:210:in `block in open_loop'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:208:in `catch'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:208:in `open_loop'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:149:in `open_uri'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:689:in `open'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:34:in `open'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/community_rest.rb:182:in `block in stream'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/retryable-1.3.5/lib/retryable.rb:17:in `retryable'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/community_rest.rb:181:in `stream'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/community_rest.rb:100:in `download'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/downloader.rb:53:in `try_download'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/downloader.rb:33:in `block in download'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/downloader.rb:32:in `each'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/downloader.rb:32:in `download'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/installer.rb:101:in `install'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:26:in `public_send'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:26:in `dispatch'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:63:in `dispatch'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/cell.rb:60:in `block in invoke'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/cell.rb:71:in `block in task'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:362:in `block in task'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks.rb:55:in `block in initialize'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks/task_fiber.rb:15:in `block in create'
from (celluloid):0:in `remote procedure call'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:92:in `value'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/proxies/sync_proxy.rb:33:in `method_missing'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/proxies/cell_proxy.rb:17:in `_send_'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/pool_manager.rb:41:in `_send_'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/pool_manager.rb:123:in `method_missing'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:26:in `public_send'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:26:in `dispatch'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:63:in `dispatch'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/cell.rb:60:in `block in invoke'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/cell.rb:71:in `block in task'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:362:in `block in task'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks.rb:55:in `block in initialize'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks/task_fiber.rb:15:in `block in create'
from (celluloid):0:in `remote procedure call'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/future.rb:104:in `value'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/future.rb:68:in `value'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/installer.rb:170:in `map'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/installer.rb:170:in `install_from_universe'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/installer.rb:39:in `run'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/berksfile.rb:371:in `install'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/berksfile.rb:590:in `vendor'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/cli.rb:387:in `vendor'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/thor-0.19.1/lib/thor/command.rb:27:in `run'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/thor-0.19.1/lib/thor/invocation.rb:126:in `invoke_command'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/thor-0.19.1/lib/thor.rb:359:in `dispatch'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/cli.rb:52:in `dispatch'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/thor-0.19.1/lib/thor/base.rb:440:in `start'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/cli.rb:27:in `execute!'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/bin/berks:5:in `<top (required)>'
from /opt/aws/opsworks/local/bin/berks:23:in `load'
from /opt/aws/opsworks/local/bin/berks:23:in `<main>'
---- End output of /opt/aws/opsworks/local/bin/berks vendor /opt/aws/opsworks/current/berkshelf-cookbooks ----
Ran /opt/aws/opsworks/local/bin/berks vendor /opt/aws/opsworks/current/berkshelf-cookbooks returned 1
Cookbook Trace:
---------------
/var/lib/aws/opsworks/cache.stage1/cookbooks/opsworks_commons/libraries/shellout.rb:9:in `shellout'
/var/lib/aws/opsworks/cache.stage1/cookbooks/opsworks_berkshelf/providers/runner.rb:13:in `block (3 levels) in class_from_file'
Resource Declaration:
---------------------
# In /var/lib/aws/opsworks/cache.stage1/cookbooks/opsworks_berkshelf/providers/runner.rb
11: ruby_block 'Install the cookbooks specified in the Berksfile and their dependencies' do
12: block do
13: Chef::Log.info OpsWorks::ShellOut.shellout(
14: berks_install_command,
15: :cwd => ::File.dirname(OpsWorks::Berkshelf.berksfile),
16: :environment => {
17: "BERKSHELF_PATH" => Opsworks::InstanceAgent::Environment.berkshelf_cache_path,
18: "LC_ALL" => "en_US.UTF-8"
19: }
20: )
21:
22: ::FileUtils.rm_rf Opsworks::InstanceAgent::Environment.berkshelf_cache_path
23: end
24:
25: only_if do
26: OpsWorks::Berkshelf.berkshelf_installed? && OpsWorks::Berkshelf.berksfile_available?
27: end
28: end
29: end
Compiled Resource:
------------------
# Declared in /var/lib/aws/opsworks/cache.stage1/cookbooks/opsworks_berkshelf/providers/runner.rb:11:in `block in class_from_file'
ruby_block("Install the cookbooks specified in the Berksfile and their dependencies") do
action "run"
retries 0
retry_delay 2
block_name "Install the cookbooks specified in the Berksfile and their dependencies"
cookbook_name "opsworks_berkshelf"
block #<Proc:0x007fcb72ceea10@/var/lib/aws/opsworks/cache.stage1/cookbooks/opsworks_berkshelf/providers/runner.rb:12>
only_if { #code block }
end
[2015-11-25T21:49:41+00:00] INFO: Running queued delayed notifications before re-raising exception
[2015-11-25T21:49:41+00:00] ERROR: Running exception handlers
[2015-11-25T21:49:41+00:00] ERROR: Exception handlers complete
[2015-11-25T21:49:41+00:00] FATAL: Stacktrace dumped to /var/lib/aws/opsworks/cache.stage1/chef-stacktrace.out
[2015-11-25T21:49:41+00:00] ERROR: ruby_block[Install the cookbooks specified in the Berksfile and their dependencies] (/var/lib/aws/opsworks/cache.stage1/cookbooks/opsworks_berkshelf/providers/runner.rb line 11) had an error: Mixlib::ShellOut::ShellCommandFailed: Expected process to exit with [0], but received '1'
---- Begin output of /opt/aws/opsworks/local/bin/berks vendor /opt/aws/opsworks/current/berkshelf-cookbooks ----
STDOUT: Resolving cookbook dependencies...
Fetching 'application_ruby' from git://github.com/D1plo1d/application_ruby.git (at master)
Fetching 'ark' from git://github.com/burtlo/ark.git (at master)
Fetching 'bluepill' from git://github.com/opscode-cookbooks/bluepill.git (at master)
Fetching 'build-essential' from git://github.com/opscode-cookbooks/build-essential.git (at master)
Fetching 'elasticsearch' from git://github.com/D1plo1d/cookbook-elasticsearch.git (at master)
Fetching 'java' from git://github.com/D1plo1d/java.git (at patch-1)
Fetching 'monit' from git://github.com/apsoto/monit.git (at master)
Fetching 'newrelic-sysmond' from git://github.com/phlipper/chef-newrelic-sysmond.git (at master)
Fetching 'nginx' from git://github.com/switchflip/nginx.git (at master)
Fetching 'opsworks-elastic-search' from git://github.com/D1plo1d/opsworks-elasticsearch-cookbook.git (at master)
Fetching 'opsworks-resque' from git://github.com/D1plo1d/opsworks-resque.git (at master)
Fetching 'opsworks-resque-scheduler' from git://github.com/D1plo1d/opsworks-resque-scheduler.git (at master)
Fetching 'python' from git://github.com/poise/python.git (at master)
Fetching 's3_asset_manifest' from git://github.com/touchbistro/opsworks-cookbooks.git (at master/s3_asset_manifest)
Fetching 'ssl-crt' from git://github.com/switchflip/ssl-crt-cookbook.git (at master)
Fetching 'tar' from git://github.com/gofullstack/tar-cookbook.git (at master)
Fetching 'touchbistro-elasticsearch' from git://github.com/touchbistro/touchbistro-elasticsearch-cookbook.git (at master)
Fetching 'touchbistro-nginx-loadbalancer' from git://github.com/TouchBistro/touchbistro-nginx-loadbalancer.git (at master)
Fetching 'touchbistro-rails' from git://github.com/touchbistro/touchbistro-rails-cookbook.git (at master)
Fetching 'unicorn' from git://github.com/D1plo1d/unicorn.git (at master)
Fetching cookbook index from https://api.berkshelf.com...
Installing apache2 (3.1.0)
Installing application (4.1.6)
Using application_ruby (3.0.2) from git://github.com/D1plo1d/application_ruby.git (at master)
Installing apt (2.9.2)
Using ark (0.9.1) from git://github.com/burtlo/ark.git (at master)
Using bluepill (2.4.1) from git://github.com/opscode-cookbooks/bluepill.git (at master)
Installing bsw_gpg (0.1.6)
Using build-essential (2.2.4) from git://github.com/opscode-cookbooks/build-essential.git (at master)
Installing chef_handler (1.2.0)
Using elasticsearch (0.0.1) from git://github.com/D1plo1d/cookbook-elasticsearch.git (at master)
Using java (1.27.0) from git://github.com/D1plo1d/java.git (at patch-1)
Installing logrotate (1.9.2)
Installing maven (2.0.1)
Using monit (0.7.5) from git://github.com/apsoto/monit.git (at master)
Using newrelic-sysmond (2.0.0) from git://github.com/phlipper/chef-newrelic-sysmond.git (at master)
Using nginx (2.7.4) from git://github.com/switchflip/nginx.git (at master)
Installing ohai (2.0.4)
Using opsworks-elastic-search (1.0.0) from git://github.com/D1plo1d/opsworks-elasticsearch-cookbook.git (at master)
Using opsworks-resque (0.1.0) from git://github.com/D1plo1d/opsworks-resque.git (at master)
Using opsworks-resque-scheduler (0.1.0) from git://github.com/D1plo1d/opsworks-resque-scheduler.git (at master)
Installing packagecloud (0.1.1)
Installing partial_search (1.0.9)
Installing passenger_apache2 (2.3.0)
Using python (1.4.7) from git://github.com/poise/python.git (at master)
Installing rsyslog (2.1.0)
Installing ruby_build (0.8.0)
Installing runit (1.7.4)
Using s3_asset_manifest (1.0.0) from git://github.com/touchbistro/opsworks-cookbooks.git (at master/s3_asset_manifest)
Installing ssh_known_hosts (2.0.0)
Using ssl-crt (0.1.0) from git://github.com/switchflip/ssl-crt-cookbook.git (at master)
Using tar (0.7.0) from git://github.com/gofullstack/tar-cookbook.git (at master)
Using touchbistro-elasticsearch (0.1.0) from git://github.com/touchbistro/touchbistro-elasticsearch-cookbook.git (at master)
Using touchbistro-nginx-loadbalancer (0.1.0) from git://github.com/TouchBistro/touchbistro-nginx-loadbalancer.git (at master)
Using touchbistro-rails (0.1.0) from git://github.com/touchbistro/touchbistro-rails-cookbook.git (at master)
Using unicorn (2.0.0) from git://github.com/D1plo1d/unicorn.git (at master)
Installing user (0.4.2)
Installing vim (2.0.0)
Installing windows (1.38.4)
Installing yum (3.8.2)
Installing yum-epel (0.6.5)
E, [2015-11-25T21:49:41.131336 #4447] ERROR -- : Actor crashed!
Errno::ETIMEDOUT: Connection timed out - connect(2)
/opt/aws/opsworks/local/lib/ruby/2.0.0/net/http.rb:878:in `initialize'
/opt/aws/opsworks/local/lib/ruby/2.0.0/net/http.rb:878:in `open'
/opt/aws/opsworks/local/lib/ruby/2.0.0/net/http.rb:878:in `block in connect'
/opt/aws/opsworks/local/lib/ruby/2.0.0/timeout.rb:52:in `timeout'
/opt/aws/opsworks/local/lib/ruby/2.0.0/net/http.rb:877:in `connect'
/opt/aws/opsworks/local/lib/ruby/2.0.0/net/http.rb:862:in `do_start'
/opt/aws/opsworks/local/lib/ruby/2.0.0/net/http.rb:851:in `start'
/opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:313:in `open_http'
/opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:709:in `buffer_open'
/opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:210:in `block in open_loop'
/opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:208:in `catch'
/opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:208:in `open_loop'
/opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:149:in `open_uri'
/opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:689:in `open'
/opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:34:in `open'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/community_rest.rb:182:in `block in stream'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/retryable-1.3.5/lib/retryable.rb:17:in `retryable'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/community_rest.rb:181:in `stream'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/community_rest.rb:100:in `download'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/downloader.rb:53:in `try_download'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/downloader.rb:33:in `block in download'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/downloader.rb:32:in `each'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/downloader.rb:32:in `download'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/installer.rb:101:in `install'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:26:in `public_send'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:26:in `dispatch'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:63:in `dispatch'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/cell.rb:60:in `block in invoke'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/cell.rb:71:in `block in task'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:362:in `block in task'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks.rb:55:in `block in initialize'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks/task_fiber.rb:15:in `block in create'
(celluloid):0:in `remote procedure call'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:92:in `value'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/proxies/sync_proxy.rb:33:in `method_missing'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/proxies/cell_proxy.rb:17:in `_send_'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/pool_manager.rb:41:in `_send_'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/pool_manager.rb:123:in `method_missing'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:26:in `public_send'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:26:in `dispatch'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:63:in `dispatch'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/cell.rb:60:in `block in invoke'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/cell.rb:71:in `block in task'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:362:in `block in task'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks.rb:55:in `block in initialize'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks/task_fiber.rb:15:in `block in create'
E, [2015-11-25T21:49:41.135947 #4447] ERROR -- : Actor crashed!
RuntimeError: wtf
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:195:in `block (2 levels) in linking_request'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:177:in `loop'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:177:in `block in linking_request'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks.rb:104:in `exclusive'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid.rb:414:in `exclusive'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:172:in `linking_request'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:56:in `monitor'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:67:in `link'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid.rb:179:in `new_link'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/pool_manager.rb:113:in `__crash_handler__'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/cell.rb:15:in `block in call'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/cell.rb:71:in `block in task'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:362:in `block in task'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks.rb:55:in `block in initialize'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks/task_fiber.rb:15:in `block in create'
E, [2015-11-25T21:49:41.136927 #4447] ERROR -- : Actor crashed!
RuntimeError: wtf
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:195:in `block (2 levels) in linking_request'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:177:in `loop'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:177:in `block in linking_request'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks.rb:104:in `exclusive'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid.rb:414:in `exclusive'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:172:in `linking_request'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:56:in `monitor'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:67:in `link'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid.rb:179:in `new_link'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/pool_manager.rb:113:in `__crash_handler__'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/cell.rb:15:in `block in call'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/cell.rb:71:in `block in task'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:362:in `block in task'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks.rb:55:in `block in initialize'
/opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks/task_fiber.rb:15:in `block in create'
STDERR: /opt/aws/opsworks/local/lib/ruby/2.0.0/net/http.rb:878:in `initialize': Connection timed out - connect(2) (Errno::ETIMEDOUT)
from /opt/aws/opsworks/local/lib/ruby/2.0.0/net/http.rb:878:in `open'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/net/http.rb:878:in `block in connect'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/timeout.rb:52:in `timeout'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/net/http.rb:877:in `connect'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/net/http.rb:862:in `do_start'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/net/http.rb:851:in `start'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:313:in `open_http'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:709:in `buffer_open'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:210:in `block in open_loop'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:208:in `catch'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:208:in `open_loop'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:149:in `open_uri'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:689:in `open'
from /opt/aws/opsworks/local/lib/ruby/2.0.0/open-uri.rb:34:in `open'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/community_rest.rb:182:in `block in stream'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/retryable-1.3.5/lib/retryable.rb:17:in `retryable'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/community_rest.rb:181:in `stream'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/community_rest.rb:100:in `download'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/downloader.rb:53:in `try_download'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/downloader.rb:33:in `block in download'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/downloader.rb:32:in `each'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/downloader.rb:32:in `download'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/installer.rb:101:in `install'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:26:in `public_send'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:26:in `dispatch'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:63:in `dispatch'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/cell.rb:60:in `block in invoke'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/cell.rb:71:in `block in task'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:362:in `block in task'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks.rb:55:in `block in initialize'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks/task_fiber.rb:15:in `block in create'
from (celluloid):0:in `remote procedure call'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:92:in `value'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/proxies/sync_proxy.rb:33:in `method_missing'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/proxies/cell_proxy.rb:17:in `_send_'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/pool_manager.rb:41:in `_send_'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/pool_manager.rb:123:in `method_missing'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:26:in `public_send'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:26:in `dispatch'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/calls.rb:63:in `dispatch'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/cell.rb:60:in `block in invoke'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/cell.rb:71:in `block in task'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/actor.rb:362:in `block in task'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks.rb:55:in `block in initialize'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/tasks/task_fiber.rb:15:in `block in create'
from (celluloid):0:in `remote procedure call'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/future.rb:104:in `value'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/celluloid-0.16.0.pre/lib/celluloid/future.rb:68:in `value'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/installer.rb:170:in `map'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/installer.rb:170:in `install_from_universe'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/installer.rb:39:in `run'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/berksfile.rb:371:in `install'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/berksfile.rb:590:in `vendor'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/cli.rb:387:in `vendor'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/thor-0.19.1/lib/thor/command.rb:27:in `run'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/thor-0.19.1/lib/thor/invocation.rb:126:in `invoke_command'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/thor-0.19.1/lib/thor.rb:359:in `dispatch'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/cli.rb:52:in `dispatch'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/thor-0.19.1/lib/thor/base.rb:440:in `start'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/lib/berkshelf/cli.rb:27:in `execute!'
from /opt/aws/opsworks/local/lib/ruby/gems/2.0.0/gems/berkshelf-3.1.1/bin/berks:5:in `<top (required)>'
from /opt/aws/opsworks/local/bin/berks:23:in `load'
from /opt/aws/opsworks/local/bin/berks:23:in `<main>'
---- End output of /opt/aws/opsworks/local/bin/berks vendor /opt/aws/opsworks/current/berkshelf-cookbooks ----
Ran /opt/aws/opsworks/local/bin/berks vendor /opt/aws/opsworks/current/berkshelf-cookbooks returned 1
[2015-11-25T21:49:41+00:00] FATAL: Chef::Exceptions::ChildConvergeError: Chef run process exited unsuccessfully (exit code 1)
---
Feedback
English
Terms of UsePrivacy Policy© 2008 - 2015, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment