Advertisement
Guest User

Untitled

a guest
Jun 30th, 2015
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.54 KB | None | 0 0
  1. config.vm.provision :chef_solo do |chef|
  2. chef.cookbooks_path = "cookbooks"
  3. chef.add_recipe "apache2"
  4. chef.add_recipe "apt"
  5. chef.add_recipe "bluepill"
  6. chef.add_recipe "build-essential"
  7. chef.add_recipe "chef-sugar"
  8. chef.add_recipe "chef_handler"
  9. chef.add_recipe "cms-scanner"
  10. chef.add_recipe "gunicorn"
  11. chef.add_recipe "homebrew"
  12. chef.add_recipe "install_from"
  13. chef.add_recipe "iptables"
  14. chef.add_recipe "logrotate"
  15. chef.add_recipe "metachef"
  16. chef.add_recipe "mysql"
  17. chef.add_recipe "nginx"
  18. chef.add_recipe "ohai"
  19. chef.add_recipe "openssl"
  20. chef.add_recipe "packagecloud"
  21. chef.add_recipe "pacman"
  22. chef.add_recipe "python"
  23. chef.add_recipe "rbac"
  24. chef.add_recipe "redis"
  25. chef.add_recipe "runit"
  26. chef.add_recipe "smf"
  27. chef.add_recipe "windows"
  28. chef.add_recipe "yum"
  29. chef.add_recipe "yum-epel"
  30. end
  31.  
  32. C:UsersgarrowaDesktopcms-vagrant>vagrant provision
  33. ==> default: Running provisioner: chef_solo...
  34. ==> default: Detected Chef (latest) is already installed
  35. Generating chef JSON and uploading...
  36. ==> default: Running chef-solo...
  37. ==> default: [2015-06-30T18:04:53-04:00] INFO: Forking chef instance to converge
  38. ...
  39. ==> default: [2015-06-30T18:04:53-04:00] INFO: *** Chef 12.4.0 ***
  40. ==> default: [2015-06-30T18:04:53-04:00] INFO: Chef-client pid: 4398
  41. ==> default: [2015-06-30T18:04:55-04:00] INFO: Setting the run_list to ["recipe[
  42. apache2]", "recipe[apt]", "recipe[bluepill]", "recipe[build-essential]", "recipe
  43. [chef-sugar]", "recipe[chef_handler]", "recipe[cms-scanner]", "recipe[gunicorn]"
  44. , "recipe[homebrew]", "recipe[install_from]", "recipe[iptables]", "recipe[logrot
  45. ate]", "recipe[metachef]", "recipe[mysql]", "recipe[nginx]", "recipe[ohai]", "re
  46. cipe[openssl]", "recipe[packagecloud]", "recipe[pacman]", "recipe[python]", "rec
  47. ipe[rbac]", "recipe[redis]", "recipe[runit]", "recipe[smf]", "recipe[windows]",
  48. "recipe[yum]", "recipe[yum-epel]"] from CLI options
  49. ==> default: [2015-06-30T18:04:55-04:00] INFO: Run List is [recipe[apache2], rec
  50. ipe[apt], recipe[bluepill], recipe[build-essential], recipe[chef-sugar], recipe[
  51. chef_handler], recipe[cms-scanner], recipe[gunicorn], recipe[homebrew], recipe[i
  52. nstall_from], recipe[iptables], recipe[logrotate], recipe[metachef], recipe[mysq
  53. l], recipe[nginx], recipe[ohai], recipe[openssl], recipe[packagecloud], recipe[p
  54. acman], recipe[python], recipe[rbac], recipe[redis], recipe[runit], recipe[smf],
  55. recipe[windows], recipe[yum], recipe[yum-epel]]
  56. ==> default: [2015-06-30T18:04:55-04:00] INFO: Run List expands to [apache2, apt
  57. , bluepill, build-essential, chef-sugar, chef_handler, cms-scanner, gunicorn, ho
  58. mebrew, install_from, iptables, logrotate, metachef, mysql, nginx, ohai, openssl
  59. , packagecloud, pacman, python, rbac, redis, runit, smf, windows, yum, yum-epel]
  60.  
  61. ==> default: [2015-06-30T18:04:55-04:00] INFO: Starting Chef Run for localhost
  62. ==> default: [2015-06-30T18:04:55-04:00] INFO: Running start handlers
  63. ==> default: [2015-06-30T18:04:55-04:00] INFO: Start handlers complete.
  64. ==> default: [2015-06-30T18:04:55-04:00] ERROR: Running exception handlers
  65. ==> default: [2015-06-30T18:04:55-04:00] ERROR: Exception handlers complete
  66. ==> default: [2015-06-30T18:04:55-04:00] ERROR: undefined method `cheffish' for
  67. nil:NilClass
  68. ==> default: [2015-06-30T18:04:55-04:00] FATAL: Chef::Exceptions::ChildConvergeE
  69. rror: Chef run process exited unsuccessfully (exit code 1)
  70. Chef never successfully completed! Any errors should be visible in the
  71. output above. Please fix your recipes so that they properly complete.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement