diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2017-01-19 10:44:26 -0800 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2017-01-19 10:44:26 -0800 |
commit | e9007b1f569ce15780ed34b837db987eec457d2f (patch) | |
tree | abae4ea9e7317dd0de5cbdbb45379296f42427ab /controller/EmbeddedNetworkController.hpp | |
parent | 0fb3d1d58239837ae058c43d7269ce7fc33f5a7c (diff) | |
download | infinitytier-e9007b1f569ce15780ed34b837db987eec457d2f.tar.gz infinitytier-e9007b1f569ce15780ed34b837db987eec457d2f.zip |
NodeJS migration script for old Sqlite controller.db to new controller data format.
Diffstat (limited to 'controller/EmbeddedNetworkController.hpp')
-rw-r--r-- | controller/EmbeddedNetworkController.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/controller/EmbeddedNetworkController.hpp b/controller/EmbeddedNetworkController.hpp index 37c067ff..bd3a6666 100644 --- a/controller/EmbeddedNetworkController.hpp +++ b/controller/EmbeddedNetworkController.hpp @@ -165,6 +165,7 @@ private: if (!network.count("v6AssignMode")) network["v6AssignMode"] = {{"rfc4193",false},{"zt",false},{"6plane",false}}; if (!network.count("authTokens")) network["authTokens"] = nlohmann::json::array(); if (!network.count("capabilities")) network["capabilities"] = nlohmann::json::array(); + if (!network.count("routes")) network["routes"] = nlohmann::json::array(); if (!network.count("ipAssignmentPools")) network["ipAssignmentPools"] = nlohmann::json::array(); if (!network.count("rules")) { // If unspecified, rules are set to allow anything and behave like a flat L2 segment |