Dr. Werner Fink 2010-07-16 16:06:06 +00:00 committed by Git OBS Bridge
parent 3b50cc8ad8
commit 3df03a62cb
2 changed files with 9 additions and 3 deletions

View File

@ -196,11 +196,11 @@ case "$1" in
echo -n "Shutting down syslog services"
if test "$start_klogd" = yes ; then
killproc -TERM ${klog_bin} ; rc_status
killproc ${klog_bin} ; rc_status
else
killproc -TERM ${klog_bin}
killproc ${klog_bin}
fi
killproc -p ${syslog_use_pid} -TERM ${syslog_use} ; rc_status -v
killproc -p ${syslog_use_pid} ${syslog_use} ; rc_status -v
rm -f /var/lock/subsys/syslogd
;;
try-restart|condrestart)

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Fri Jul 16 17:22:27 CEST 2010 - werner@suse.de
- Newer killproc sends only SIGTERM as required by LSB if -TERM is
specified on the command line. Use the default which is SIGTERM
-------------------------------------------------------------------
Tue May 4 15:58:23 CEST 2010 - pczanik@fang.fa.gau.hu