- Timestamp:
- Feb 14, 2012, 8:42:53 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/Changelog
r390 r392 1 1 3.0.2: 2 * change sql init scripts to make bigint fields unsigned (problem 3 reported by A. Sabitov) 4 * patch by Andy Jack for issue with the --with-gpg option (hangs with 5 high cpu load at startup) 2 6 * call ./samhain-install.sh as /bin/sh ./samhain-install.sh in the 3 7 RPM spec file, because /var might be mounted noexec (reported by GC) … … 11 15 * fixed: the definition of O_NOATIME isn't seen in sh_files.c. 12 16 13 3.0.1 :17 3.0.1 (07-12-2011): 14 18 * fix a memory leak (reported by C. Westlake) 15 19 * fix an uninitialized variable in the suidcheck code (problem -
trunk/sql_init/samhain.mysql.init
r296 r392 70 70 link_new BLOB, 71 71 72 size_old BIGINT ,73 size_new BIGINT ,74 hardlinks_old BIGINT ,75 hardlinks_new BIGINT ,76 inode_old BIGINT ,77 inode_new BIGINT ,72 size_old BIGINT UNSIGNED, 73 size_new BIGINT UNSIGNED, 74 hardlinks_old BIGINT UNSIGNED, 75 hardlinks_new BIGINT UNSIGNED, 76 inode_old BIGINT UNSIGNED, 77 inode_new BIGINT UNSIGNED, 78 78 79 imode_old BIGINT ,80 imode_new BIGINT ,81 iattr_old BIGINT ,82 iattr_new BIGINT ,83 idevice_old BIGINT ,84 idevice_new BIGINT ,85 iowner_old BIGINT ,86 iowner_new BIGINT ,87 igroup_old BIGINT ,88 igroup_new BIGINT ,79 imode_old BIGINT UNSIGNED, 80 imode_new BIGINT UNSIGNED, 81 iattr_old BIGINT UNSIGNED, 82 iattr_new BIGINT UNSIGNED, 83 idevice_old BIGINT UNSIGNED, 84 idevice_new BIGINT UNSIGNED, 85 iowner_old BIGINT UNSIGNED, 86 iowner_new BIGINT UNSIGNED, 87 igroup_old BIGINT UNSIGNED, 88 igroup_new BIGINT UNSIGNED, 89 89 90 90 -
trunk/sql_init/samhain.postgres.init
r296 r392 64 64 link_new TEXT, 65 65 66 size_old BIGINT,67 size_new BIGINT,68 hardlinks_old BIGINT,69 hardlinks_new BIGINT,70 inode_old BIGINT,71 inode_new BIGINT,66 size_old NUMERIC(20), 67 size_new NUMERIC(20), 68 hardlinks_old NUMERIC(20), 69 hardlinks_new NUMERIC(20), 70 inode_old NUMERIC(20), 71 inode_new NUMERIC(20), 72 72 73 imode_old BIGINT,74 imode_new BIGINT,75 iattr_old BIGINT,76 iattr_new BIGINT,77 idevice_old BIGINT,78 idevice_new BIGINT,79 iowner_old BIGINT,80 iowner_new BIGINT,81 igroup_old BIGINT,82 igroup_new BIGINT,73 imode_old NUMERIC(20), 74 imode_new NUMERIC(20), 75 iattr_old NUMERIC(20), 76 iattr_new NUMERIC(20), 77 idevice_old NUMERIC(20), 78 idevice_new NUMERIC(20), 79 iowner_old NUMERIC(20), 80 iowner_new NUMERIC(20), 81 igroup_old NUMERIC(20), 82 igroup_new NUMERIC(20), 83 83 84 84 acl_old TEXT,
Note:
See TracChangeset
for help on using the changeset viewer.