Added missing config value to 221-222 upgrade script. It was present in 223 branch, but missing in master

This commit is contained in:
alena 2011-03-26 16:52:28 -07:00
parent 530cb9e77b
commit 04551d59ea

View File

@ -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');