2013-03-05 Sergio Martin <sergio.martin@artica.es>
* pandoradb_data.sql pandoradb.data.postgreSQL.sql pandoradb.data.oracle.sql extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql: Added CPU and Process inventory change types to black list in default SQL data script for bug 3606111 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7787 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
4af01ca236
commit
2aef529f1d
|
@ -1,3 +1,14 @@
|
|||
2013-03-05 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* pandoradb_data.sql
|
||||
pandoradb.data.postgreSQL.sql
|
||||
pandoradb.data.oracle.sql
|
||||
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql
|
||||
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql
|
||||
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql: Added CPU
|
||||
and Process inventory change types to black list in default
|
||||
SQL data script for bug 3606111
|
||||
|
||||
2013-03-05 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* extensions/snmp_explorer.php: improved the code style.
|
||||
|
|
|
@ -237,7 +237,8 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES
|
|||
('meta_style', 'meta_pandora'),
|
||||
('enable_refr', 0),
|
||||
('show_vc', 1),
|
||||
('meta_num_elements', 100);
|
||||
('meta_num_elements', 100),
|
||||
('inventory_changes_blacklist', '1,2,20,21');
|
||||
UPDATE tconfig SET `value`='comparation' WHERE `token`= 'prominent_time';
|
||||
|
||||
-- ----------------------------------------------------------------------
|
||||
|
|
|
@ -282,6 +282,7 @@ INSERT INTO tconfig (token, value) VALUES ('meta_style', 'meta_pandora');
|
|||
INSERT INTO tconfig (token, value) VALUES ('enable_refr', 0);
|
||||
INSERT INTO tconfig (token, value) VALUES ('show_vc', 1);
|
||||
INSERT INTO tconfig (token, value) VALUES ('meta_num_elements', 1);
|
||||
INSERT INTO tconfig (token, value) VALUES ('inventory_changes_blacklist', '1,2,20,21');
|
||||
|
||||
-- -----------------------------------------------------
|
||||
-- Table tpassword_history
|
||||
|
|
|
@ -297,7 +297,8 @@ INSERT INTO "tconfig" ("token", "value") VALUES
|
|||
('meta_style', 'meta_pandora'),
|
||||
('enable_refr', 0),
|
||||
('show_vc', 1),
|
||||
('meta_num_elements', 100);
|
||||
('meta_num_elements', 100),
|
||||
('inventory_changes_blacklist', '1,2,20,21');
|
||||
|
||||
-- -----------------------------------------------------
|
||||
-- Table "tpassword_history"
|
||||
|
|
|
@ -111,6 +111,7 @@ INSERT INTO tconfig (token, value) VALUES ('meta_num_elements', 100);
|
|||
INSERT INTO tconfig (token, value) VALUES ('update_manager_installed', 1);
|
||||
INSERT INTO tconfig (token, value) VALUES ('num_files_attachment', 100);
|
||||
INSERT INTO tconfig (token, value) VALUES ('show_vc', 1);
|
||||
INSERT INTO tconfig (token, value) VALUES ('inventory_changes_blacklist', '1,2,20,21');
|
||||
COMMIT;
|
||||
END;;
|
||||
|
||||
|
|
|
@ -106,7 +106,8 @@ INSERT INTO "tconfig" ("token", "value") VALUES
|
|||
('meta_num_elements', 100),
|
||||
('update_manager_installed', 1),
|
||||
('num_files_attachment', 100),
|
||||
('show_vc', 1);
|
||||
('show_vc', 1),
|
||||
('inventory_changes_blacklist', '1,2,20,21');
|
||||
|
||||
COMMIT WORK;
|
||||
|
||||
|
|
|
@ -93,7 +93,8 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES
|
|||
('meta_num_elements', 100),
|
||||
('update_manager_installed', 1),
|
||||
('num_files_attachment', 250),
|
||||
('show_vc', 1);
|
||||
('show_vc', 1),
|
||||
('inventory_changes_blacklist', '1,2,20,21');
|
||||
|
||||
UNLOCK TABLES;
|
||||
|
||||
|
|
Loading…
Reference in New Issue