Changeset 68 for trunk/docs


Ignore:
Timestamp:
Oct 30, 2006, 12:03:44 AM (18 years ago)
Author:
rainer
Message:

Update trunk to samhain 2.3

Location:
trunk/docs
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/docs/Changelog

    r65 r68  
     12.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 
    1122.2.6:
    213        * fix error about non-readable file with no checksum required
     
    415        * fix 'make deb' makefile target
    516        * fix default export severity for server
    6        
     17                       
    7182.2.5 (05-10-2006):
    819        * fix broken Install.sh, reported by Alexander Kraemer
  • trunk/docs/README.UPGRADE

    r27 r68  
     1
     2from 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
    118
    219since 2.2.0: server-to-server relay is possible
Note: See TracChangeset for help on using the changeset viewer.