Repository: cloudstack Updated Branches: refs/heads/master f80310081 -> 137655d4e
developer: add commonly used glboal config in developer-prefill.sql This commit adds three commonly used config that developers usually set after fresh deployment. The account cleanup timeout is set to 60s to speed up BVT runs. Signed-off-by: Rohit Yadav <[email protected]> (cherry picked from commit a68d8986829c462d655bf59a0cbcc0d4e8b1cc3e) Signed-off-by: Rohit Yadav <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/137655d4 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/137655d4 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/137655d4 Branch: refs/heads/master Commit: 137655d4e11cb490391d0f4982c52262bbb7427c Parents: f803100 Author: Rohit Yadav <[email protected]> Authored: Fri Aug 1 16:42:00 2014 +0200 Committer: Rohit Yadav <[email protected]> Committed: Fri Aug 1 16:54:10 2014 +0200 ---------------------------------------------------------------------- developer/developer-prefill.sql | 12 ++++++++++++ 1 file changed, 12 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/137655d4/developer/developer-prefill.sql ---------------------------------------------------------------------- diff --git a/developer/developer-prefill.sql b/developer/developer-prefill.sql index e4f90ca..7b423a1 100644 --- a/developer/developer-prefill.sql +++ b/developer/developer-prefill.sql @@ -46,6 +46,18 @@ INSERT INTO `cloud`.`configuration` (category, instance, component, name, value) VALUES ('Advanced', 'DEFAULT', 'management-server', 'integration.api.port', '8096'); +INSERT INTO `cloud`.`configuration` (category, instance, component, name, value) + VALUES ('Advanced', 'DEFAULT', 'management-server', + 'secstorage.allowed.internal.sites', '0.0.0.0/0'); + +INSERT INTO `cloud`.`configuration` (category, instance, component, name, value) + VALUES ('Advanced', 'DEFAULT', 'management-server', + 'account.cleanup.interval', '60'); + +INSERT INTO `cloud`.`configuration` (category, instance, component, name, value) + VALUES ('Advanced', 'DEFAULT', 'management-server', + 'system.vm.use.local.storage', 'true'); + -- Add developer configuration entry; allows management server to be run as a user other than "cloud" INSERT INTO `cloud`.`configuration` (category, instance, component, name, value) VALUES ('Advanced', 'DEFAULT', 'management-server',
