huginn_development.json 604 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name" : "huginn_development",
  3. "chef_type" : "role",
  4. "json_class" : "Chef::Role",
  5. "description" : "Huginn Development Environment",
  6. "default_attributes" : {
  7. "mysql" : {
  8. "server_root_password" : "",
  9. "server_repl_password" : "",
  10. "server_debian_password" : ""
  11. },
  12. "nginx" : {
  13. "init_style" : "upstart"
  14. }
  15. },
  16. "run_list":[
  17. "recipe[git]",
  18. "recipe[apt]",
  19. "recipe[mysql::server]",
  20. "recipe[mysql::client]",
  21. "recipe[nodejs::nodejs_from_binary]",
  22. "recipe[huginn_development]"
  23. ]
  24. }