diff options
author | Micah Anderson <micah@riseup.net> | 2013-11-19 14:48:13 -0500 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2013-11-19 14:48:13 -0500 |
commit | 4784d575de0585816e04659b36a8702b7c54bbac (patch) | |
tree | f5122bb49933eae5ccafcae02da9e8ac81573d52 /nodes | |
parent | c405ee5f6e71d0aa7403fa9bae270799c2290b4a (diff) |
remove double quoting from false values
Diffstat (limited to 'nodes')
-rw-r--r-- | nodes/snake.json | 2 | ||||
-rw-r--r-- | nodes/wombat.json | 2 | ||||
-rw-r--r-- | nodes/zebra.json | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/nodes/snake.json b/nodes/snake.json index 3767c43..f8e715d 100644 --- a/nodes/snake.json +++ b/nodes/snake.json @@ -6,5 +6,5 @@ ], "tags": ["production", "dc"], // currently down in DC, 2013-06-27 - "enabled": "false" + "enabled": false } diff --git a/nodes/wombat.json b/nodes/wombat.json index 9731db4..5479002 100644 --- a/nodes/wombat.json +++ b/nodes/wombat.json @@ -6,5 +6,5 @@ "webapp" ], // currently down in DC, 2013-06-27 - "enabled": "false" + "enabled": false } diff --git a/nodes/zebra.json b/nodes/zebra.json index d6a73ee..eecb5b1 100644 --- a/nodes/zebra.json +++ b/nodes/zebra.json @@ -3,5 +3,5 @@ "services": "mx", "tags": ["production", "dc"], // currently down in DC, 2013-06-27 - "enabled": "false" + "enabled": false } |