123456789101112131415161718192021222324252627282930 |
- {
- "name" : "huginn_production",
- "chef_type" : "role",
- "json_class" : "Chef::Role",
- "description" : "Huginn Production Environment",
- "default_attributes" : {
- "mysql": {
- "server_root_password": "password",
- "server_repl_password": "",
- "server_debian_password": ""
- },
- "nginx" : {
- "init_style" : "upstart"
- }
- },
- "run_list":[
- "recipe[git]",
- "recipe[apt]",
- "recipe[mysql::server]",
- "recipe[nodejs::nodejs_from_binary]",
- "recipe[nginx]",
- "recipe[huginn_production]"
- ]
- }
|