Changeset 2234

Show
Ignore:
Timestamp:
08/26/08 20:08:36 (3 months ago)
Author:
mbr
Message:

- (Steve B) Submitted patch to fix a bug in the start() function in the
Gentoo init script which caused psad to not be started and the error
"* ERROR: psad failed to start" to be generated.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • psad/trunk/CREDITS

    r2232 r2234  
    406406    - Reported a bug where IPT_SYSLOG_FILE was not being honored in -A 
    407407      (analyze) mode. 
     408 
     409Steve B 
     410    - Submitted patch to fix a bug in the start() function in the Gentoo init 
     411      script which caused psad to not be started and the error "* ERROR: psad 
     412      failed to start" to be generated. 
  • psad/trunk/ChangeLog

    r2226 r2234  
     1psad-2.1.5 (09//2008): 
     2    - (Steve B) Submitted patch to fix a bug in the start() function in the 
     3      Gentoo init script which caused psad to not be started and the error 
     4      "* ERROR: psad failed to start" to be generated. 
     5 
    16psad-2.1.4 (08/21/2008): 
    27    - Restructured perl module paths to make it easy to introduce a "nodeps" 
  • psad/trunk/init-scripts/psad-init.gentoo

    r1613 r2234  
    2323 
    2424        ebegin "Starting ${SVCNAME}" 
    25         start-stop-daemon --start --quiet --exec /usr/sbin/psad 
     25        start-stop-daemon \ 
     26                --start \ 
     27                --quiet \ 
     28                --name psad \ 
     29                --exec /usr/sbin/psad \ 
     30                --pidfile /var/run/psad/psad.pid 
    2631        eend $? "Failed to start ${SVCNAME}" 
    2732}