2012-07-03 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* pandoradb_data.sql pandoradb.data.postgreSQL.sql pandoradb.data.oracle.sql extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql extras/pandoradb_migrate_4.0.x_to_4.1.oracle.sql extras/pandoradb_migrate_4.0.x_to_4.1.postgreSQL.sql: Added meta_style row in tconfig. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6730 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
efa096fcb2
commit
40ee4b5d9e
|
@ -1,3 +1,13 @@
|
|||
2012-07-03 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||
|
||||
* pandoradb_data.sql
|
||||
pandoradb.data.postgreSQL.sql
|
||||
pandoradb.data.oracle.sql
|
||||
extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql
|
||||
extras/pandoradb_migrate_4.0.x_to_4.1.oracle.sql
|
||||
extras/pandoradb_migrate_4.0.x_to_4.1.postgreSQL.sql: Added
|
||||
meta_style row in tconfig.
|
||||
|
||||
2012-07-03 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||
|
||||
* include/functions_api.php: Removed innecesary flags in some policy
|
||||
|
|
|
@ -247,7 +247,8 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES
|
|||
('number_attempts', 5),
|
||||
('enable_pass_policy_admin', 0),
|
||||
('enable_pass_history', 0),
|
||||
('compare_pass', 3);
|
||||
('compare_pass', 3),
|
||||
('meta_style', 'meta_pandora');
|
||||
|
||||
-- -----------------------------------------------------
|
||||
-- Table `tpassword_history`
|
||||
|
|
|
@ -239,18 +239,18 @@ INSERT INTO talert_commands (name, command, description, internal) VALUES ('Vali
|
|||
-- Table `tconfig`
|
||||
-- -----------------------------------------------------
|
||||
|
||||
INSERT INTO tconfig (token, value) VALUES
|
||||
('enable_pass_policy', 0),
|
||||
('pass_size', 4),
|
||||
('pass_needs_numbers', 0),
|
||||
('pass_needs_symbols', 0),
|
||||
('pass_expire', 0),
|
||||
('first_login', 0),
|
||||
('mins_fail_pass', 5),
|
||||
('number_attempts', 5),
|
||||
('enable_pass_policy_admin', 0),
|
||||
('enable_pass_history', 0),
|
||||
('compare_pass', 3);
|
||||
INSERT INTO tconfig (token, value) VALUES ('enable_pass_policy', 0);
|
||||
INSERT INTO tconfig (token, value) VALUES ('pass_size', 4);
|
||||
INSERT INTO tconfig (token, value) VALUES ('pass_needs_numbers', 0);
|
||||
INSERT INTO tconfig (token, value) VALUES ('pass_needs_symbols', 0);
|
||||
INSERT INTO tconfig (token, value) VALUES ('pass_expire', 0);
|
||||
INSERT INTO tconfig (token, value) VALUES ('first_login', 0);
|
||||
INSERT INTO tconfig (token, value) VALUES ('mins_fail_pass', 5);
|
||||
INSERT INTO tconfig (token, value) VALUES ('number_attempts', 5);
|
||||
INSERT INTO tconfig (token, value) VALUES ('enable_pass_policy_admin', 0);
|
||||
INSERT INTO tconfig (token, value) VALUES ('enable_pass_history', 0);
|
||||
INSERT INTO tconfig (token, value) VALUES ('compare_pass', 3);
|
||||
INSERT INTO tconfig (token, value) VALUES ('meta_style', 'meta_pandora');
|
||||
|
||||
-- -----------------------------------------------------
|
||||
-- Table `tpassword_history`
|
||||
|
|
|
@ -239,7 +239,8 @@ INSERT INTO "tconfig" ("token", "value") VALUES
|
|||
('number_attempts', 5),
|
||||
('enable_pass_policy_admin', 0),
|
||||
('enable_pass_history', 0),
|
||||
('compare_pass', 3);
|
||||
('compare_pass', 3),
|
||||
('meta_style', 'meta_pandora');
|
||||
|
||||
-- -----------------------------------------------------
|
||||
-- Table `tpassword_history`
|
||||
|
|
|
@ -103,6 +103,7 @@ INSERT INTO tconfig (token, value) VALUES ('number_attempts', 5);
|
|||
INSERT INTO tconfig (token, value) VALUES ('enable_pass_policy_admin', 0);
|
||||
INSERT INTO tconfig (token, value) VALUES ('enable_pass_history', 0);
|
||||
INSERT INTO tconfig (token, value) VALUES ('compare_pass', 3);
|
||||
INSERT INTO tconfig (token, value) VALUES ('meta_style', 'meta_pandora');
|
||||
COMMIT;
|
||||
END;;
|
||||
|
||||
|
|
|
@ -98,7 +98,8 @@ INSERT INTO "tconfig" ("token", "value") VALUES
|
|||
('number_attempts', 5),
|
||||
('enable_pass_policy_admin', 0),
|
||||
('enable_pass_history', 0),
|
||||
('compare_pass', 3);
|
||||
('compare_pass', 3),
|
||||
('meta_style', 'meta_pandora');
|
||||
|
||||
COMMIT WORK;
|
||||
|
||||
|
|
|
@ -97,7 +97,8 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES
|
|||
('number_attempts', 5),
|
||||
('enable_pass_policy_admin', 0),
|
||||
('enable_pass_history', 0),
|
||||
('compare_pass', 3);
|
||||
('compare_pass', 3),
|
||||
('meta_style', 'meta_pandora');
|
||||
|
||||
UNLOCK TABLES;
|
||||
|
||||
|
|
Loading…
Reference in New Issue