From 04551d59ea6018052802706b5ce8f83fac51fbc9 Mon Sep 17 00:00:00 2001 From: alena Date: Sat, 26 Mar 2011 16:52:28 -0700 Subject: [PATCH] Added missing config value to 221-222 upgrade script. It was present in 223 branch, but missing in master --- setup/db/221to222.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup/db/221to222.sql b/setup/db/221to222.sql index 70aae9bbc8d..bd57bf97542 100644 --- a/setup/db/221to222.sql +++ b/setup/db/221to222.sql @@ -27,4 +27,6 @@ update network_offerings set specify_vlan=1 where system_only=0 and guest_type=' update networks set traffic_type='Guest' where network_offering_id in (select id from network_offerings where system_only=0); update network_offerings set availability='Optional' where id=7; delete from configuration where name='router.cleanup.interval'; +INSERT INTO configuration (category, instance, component, name, value, description) + VALUES ('Advanced', 'DEFAULT', 'management-server', 'management.network.cidr', NULL, 'The cidr of management server network'); INSERT INTO `cloud`.`guest_os` (id, category_id, display_name) VALUES (138, 7, 'None');