Changeset 521
- Timestamp:
- Apr 5, 2017, 9:46:39 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r516 r521 12 12 dnl start 13 13 dnl 14 AM_INIT_AUTOMAKE(samhain, 4.2. 0)14 AM_INIT_AUTOMAKE(samhain, 4.2.1) 15 15 AC_DEFINE([SAMHAIN], 1, [Application is samhain]) 16 16 AC_CANONICAL_HOST -
trunk/docs/Changelog
r520 r521 1 1 4.2.1: 2 * fix dependency on chkconfig package on Redhat/CentOS: search 3 /etc/init.d/functions also under /etc/rc.d/init.d/functions 4 (issue reported by Ernie) 2 5 * fix build issue with musl libc (report & patch by A. Kuster) 3 6 * fix case sensitivity (tcp vs TCP, udp vs UDP) in portcheck … … 10 13 align with documentation 11 14 12 4.2.0 :15 4.2.0 (31-10-2016): 13 16 * fix handle tracefs (permission for stat denied) when running 14 17 suidcheck without root privilege (for testing) -
trunk/init/samhain.startLinux.in
r481 r521 40 40 # and the command to run them. 41 41 if [ -f /etc/redhat-release ]; then 42 if [ -f /etc/init.d/functions ]; then 42 43 . /etc/init.d/functions 43 44 DISTRO=redhat 45 elif [ -f /etc/rc.d/init.d/functions ]; then 46 . /etc/rc.d/init.d/functions 47 DISTRO=redhat 48 else 49 DISTRO=generic 50 fi 44 51 elif [ -f /etc/mandrake-release ]; then 45 52 . /etc/init.d/functions
Note:
See TracChangeset
for help on using the changeset viewer.