diff options
author | jkeiser <jkeiser@opscode.com> | 2012-12-20 17:13:52 -0800 |
---|---|---|
committer | jkeiser <jkeiser@opscode.com> | 2012-12-20 17:13:52 -0800 |
commit | 397601fc5ccb754eeeffb20b2953d13da3beeafc (patch) | |
tree | f473e5af48cf2be5efc91555b002c275547113b3 /playground | |
parent | e792ec1eef0e0d004561dded5304abc43e89a246 (diff) | |
download | chef-zero-397601fc5ccb754eeeffb20b2953d13da3beeafc.tar.gz |
Include run list in nodes so chef doesn't choke
Diffstat (limited to 'playground')
-rw-r--r-- | playground/nodes/blah.json | 4 | ||||
-rw-r--r-- | playground/nodes/blarrrrgh.json | 6 | ||||
-rw-r--r-- | playground/nodes/boxer.json | 6 | ||||
-rw-r--r-- | playground/nodes/camel.json | 6 | ||||
-rw-r--r-- | playground/nodes/monkey.json | 6 |
5 files changed, 19 insertions, 9 deletions
diff --git a/playground/nodes/blah.json b/playground/nodes/blah.json index 669e1af..8bcebcc 100644 --- a/playground/nodes/blah.json +++ b/playground/nodes/blah.json @@ -1,5 +1,7 @@ { "chef_type": "node", + "json_class": "Chef::Node", "name": "blah", - "chef_environment": "_default" + "chef_environment": "_default", + "run_list": [] } diff --git a/playground/nodes/blarrrrgh.json b/playground/nodes/blarrrrgh.json index 358e4d5..6025af9 100644 --- a/playground/nodes/blarrrrgh.json +++ b/playground/nodes/blarrrrgh.json @@ -1,5 +1,7 @@ { "chef_type": "node", + "json_class": "Chef::Node", "name": "blarrrrgh", - "chef_environment": "_default" -}
\ No newline at end of file + "chef_environment": "_default", + "run_list": [] +} diff --git a/playground/nodes/boxer.json b/playground/nodes/boxer.json index 7643fa7..8a96dad 100644 --- a/playground/nodes/boxer.json +++ b/playground/nodes/boxer.json @@ -1,5 +1,7 @@ { "chef_type": "node", + "json_class": "Chef::Node", "name": "boxer", - "chef_environment": "_default" -}
\ No newline at end of file + "chef_environment": "_default", + "run_list": [] +} diff --git a/playground/nodes/camel.json b/playground/nodes/camel.json index c69d048..2afb91e 100644 --- a/playground/nodes/camel.json +++ b/playground/nodes/camel.json @@ -1,5 +1,7 @@ { "chef_type": "node", + "json_class": "Chef::Node", "name": "camel", - "chef_environment": "desert" -}
\ No newline at end of file + "chef_environment": "desert", + "run_list": [] +} diff --git a/playground/nodes/monkey.json b/playground/nodes/monkey.json index 3170252..b61a513 100644 --- a/playground/nodes/monkey.json +++ b/playground/nodes/monkey.json @@ -1,5 +1,7 @@ { "chef_type": "node", + "json_class": "Chef::Node", "name": "monkey", - "chef_environment": "rainforest" -}
\ No newline at end of file + "chef_environment": "rainforest", + "run_list": [] +} |