From bbe62ea134ddd2e0e301909e1d36434a08116e59 Mon Sep 17 00:00:00 2001 From: Jayapal Date: Thu, 30 Jan 2014 19:29:54 +0530 Subject: [PATCH] CLOUDSTACK-5966 Update the schema-421-430.sql for EnableServiceMonitoring global setting (cherry picked from commit 888b90677623da745a01db0a5087272f0dabe42c) Signed-off-by: Animesh Chaturvedi --- setup/db/db/schema-421to430.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/setup/db/db/schema-421to430.sql b/setup/db/db/schema-421to430.sql index 1ed6c6b6cc9..6e969476179 100644 --- a/setup/db/db/schema-421to430.sql +++ b/setup/db/db/schema-421to430.sql @@ -1091,3 +1091,4 @@ CREATE VIEW `cloud`.`user_vm_view` AS INSERT INTO `cloud`.`configuration`(category, instance, component, name, value, description, default_value) VALUES ('NetworkManager', 'DEFAULT', 'management-server', 'network.router.EnableServiceMonitoring', 'false', 'service monitoring in router enable/disable option, default false', 'false') ON DUPLICATE KEY UPDATE category='NetworkManager'; +INSERT IGNORE INTO `cloud`.`configuration`(category, instance, component, name, value, description, default_value) VALUES ('NetworkManager', 'DEFAULT', 'management-server', 'network.router.EnableServiceMonitoring', 'true', 'service monitoring in router enable/disable option, default true', 'true') ON DUPLICATE KEY UPDATE category='NetworkManager';