Changeset 68 for trunk/docs
- Timestamp:
- Oct 30, 2006, 12:03:44 AM (18 years ago)
- Location:
- trunk/docs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/Changelog
r65 r68 1 2.3.0: 2 * fix concurrency for inserts in oracle db 3 * add acl_(new|old) to database schema 4 * check for selix attributes and/or posix acl 5 * new option UseSelinuxCheck (bool) 6 * new option UseAclCheck (bool) 7 * regression tests for above 8 * add module to check for open ports 9 * add module to check processes (hidden/fake/missing) 10 * use const char* for argument of module configuration callbacks 11 1 12 2.2.6: 2 13 * fix error about non-readable file with no checksum required … … 4 15 * fix 'make deb' makefile target 5 16 * fix default export severity for server 6 17 7 18 2.2.5 (05-10-2006): 8 19 * fix broken Install.sh, reported by Alexander Kraemer -
trunk/docs/README.UPGRADE
r27 r68 1 2 from lower to 2.3.x: database scheme has changed slightly 3 4 -- MySQL: 5 ALTER TABLE samhain.log ADD COLUMN acl_old BLOB; 6 ALTER TABLE samhain.log ADD COLUMN acl_new BLOB; 7 8 -- PostgreSQL: 9 ALTER TABLE samhain.log ADD COLUMN acl_old TEXT; 10 ALTER TABLE samhain.log ADD COLUMN acl_new TEXT; 11 12 -- Oracle: 13 ALTER TABLE samhain.log ADD COLUMN acl_old VARCHAR2(4000); 14 ALTER TABLE samhain.log ADD COLUMN acl_new VARCHAR2(4000); 15 DROP TRIGGER trigger_on_log; 16 17 1 18 2 19 since 2.2.0: server-to-server relay is possible
Note:
See TracChangeset
for help on using the changeset viewer.