Changeset 481 for trunk/docs


Ignore:
Timestamp:
Jul 18, 2015, 5:06:52 PM (9 years ago)
Author:
katerina
Message:

Enhancements and fixes for tickets #374, #375, #376, #377, #378, and #379.

Location:
trunk/docs
Files:
2 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/docs/Changelog

    r476 r481  
    1 3.1.6:
    2         * More modern and more complete VA_COPY autoconf macro
    3           (from the openwrt project)
     14.0.0:
     2        * new -w CL option to wait on scan completion
     3        * new option ReportCheckflags
     4        * enhance testsuite to cover new functionality
     5        * implement draft for change control integration:
     6          * new database format to store change flags
     7          * refactoring of db I/O and client/server code
     8          * option StartupLoadDelay
     9          * --create-database CL option
     10          * --outfile CL option
     11          * --binary, --list-filter CL options
     12          * --verify-database CL option
     13          * yulectl -c DELTA:<uuid> command
     14          * option SetDeltaRetryCount
     15          * option SetDeltaRetryInterval
     16          * update documentation
     17        * remove old/unused code
     18        * fix compiler warnings with gcc 5.1.0
     19        * update config.sub, config.guess
     20
     213.1.6 (08-06-2015):
    422        * Modify testcompile.sh to remove 'smatch' and use 'clang'
    523          instead.
  • trunk/docs/README.UPGRADE

    r297 r481  
     1to 4.0.0 and higher: if you use "ReportCheckflags = yes" (off by default),
     2  you need to change the database scheme:
     3
     4  -- mysql:
     5          ALTER TABLE samhain.log ADD COLUMN checkflags_old BIGINT UNSIGNED;
     6          ALTER TABLE samhain.log ADD COLUMN checkflags_new BIGINT UNSIGNED;
     7
     8  -- postgres:
     9          ALTER TABLE samhain.log ADD COLUMN checkflags_old NUMERIC(20);
     10          ALTER TABLE samhain.log ADD COLUMN checkflags_new NUMERIC(20);
     11
     12  --oracle:
     13          ALTER TABLE samhain.log ADD checkflags_old NUMBER(20);
     14          ALTER TABLE samhain.log ADD checkflags_new NUMBER(20);
     15
    116to 2.8.0 and higher: samhain supports IPv6 now, which means that the
    217  size of the 'ip' column in the database must be increased from
     
    4055  -- this may cause spurious warnings about modified links, if you check
    4156     against a database created with an earlier version of samhain
    42 
    43 
    4457
    4558from lower to 2.3.x: the database scheme has changed slightly.
Note: See TracChangeset for help on using the changeset viewer.