summaryrefslogtreecommitdiff
path: root/playground/nodes
diff options
context:
space:
mode:
authorjkeiser <jkeiser@opscode.com>2012-12-20 17:13:52 -0800
committerjkeiser <jkeiser@opscode.com>2012-12-20 17:13:52 -0800
commit397601fc5ccb754eeeffb20b2953d13da3beeafc (patch)
treef473e5af48cf2be5efc91555b002c275547113b3 /playground/nodes
parente792ec1eef0e0d004561dded5304abc43e89a246 (diff)
downloadchef-zero-397601fc5ccb754eeeffb20b2953d13da3beeafc.tar.gz
Include run list in nodes so chef doesn't choke
Diffstat (limited to 'playground/nodes')
-rw-r--r--playground/nodes/blah.json4
-rw-r--r--playground/nodes/blarrrrgh.json6
-rw-r--r--playground/nodes/boxer.json6
-rw-r--r--playground/nodes/camel.json6
-rw-r--r--playground/nodes/monkey.json6
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": []
+}