huginn_production.json 587 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name" : "huginn_production",
  3. "chef_type" : "role",
  4. "json_class" : "Chef::Role",
  5. "description" : "Huginn Production Environment",
  6. "default_attributes" : {
  7. "mysql": {
  8. "server_root_password": "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[nodejs::nodejs_from_binary]",
  21. "recipe[nginx]",
  22. "recipe[huginn_production]"
  23. ]
  24. }