[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#350119: marked as done (apache2-common: better pidfile search (patch provided))



Your message dated Sun, 29 Oct 2006 20:48:00 +0100
with message-id <87d58aaopb.fsf@thosu.err.no>
and subject line Script rewritten in 2.2.3-2
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: apache2-common
Version: 2.0.55-4
Severity: important


This patch add recursive inclusion while searching pidfile and fixes the fact
that apache2 doesn't stop when /etc/apache2/conf.d is empty.

hth,
regards
mc

29a30,43
> # find_and_execute_globs
> # search all apache configuration files included by the files passed as arguments.
> # ( act recursively )
> # strictly Bourne compliant globs are incompatibles with the Apache configuration one
> # ( [^.#] doesn't mean the same, for exemple ) so this function needs bash or zsh to work.
> 
> find_and_execute_globs () {
>     shopt -s nullglob
>     glob=$( awk '$1 ~ /^\s*[Ii]nclude$/ && $2 ~ /^\// {print $2}' $* )
>     echo $glob
>     # comment the next line to stop recursion 
>     [ -n "$glob" ] && find_and_execute_globs $glob
> }
> 
31,32d44
< 	PID=""
< 	PIDFILE=""
36,37c48,54
< 	# last found in the config is used; we attempt to follow includes
< 	# here, but only first-level includes are supported, not nested ones
---
> 	# last found in the config is used
> 
> 	PID=$( cat $( awk '
> 		BEGIN { IGNORECASE=1 }
> 		/^PidFile/ { pid=$2 }
> 		END { print pid }
> 		' $AP_CONF $( find_and_execute_globs $AP_CONF )))
39,45d55
< 	for i in $AP_CONF `awk '$1 ~ /^\s*[Ii]nclude$/ && $2 ~ /^\// {print $2}' $AP_CONF`; do
< 		PIDFILE=`grep -i ^PidFile $i | tail -n 1 | awk '{print $2}'`
< 		if [ -e "$PIDFILE" ]; then
< 			PID=`cat $PIDFILE`
< 		fi
< 	done
< 	


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (900, 'stable'), (300, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.8-1-386
Locale: LANG=fr_FR, LC_CTYPE=fr_FR (charmap=ISO-8859-1)

Versions of packages apache2-common depends on:
ii  apache2-utils                 2.0.55-4   utility programs for webservers
ii  debconf                       1.4.67     Debian configuration management sy
ii  debianutils                   2.15.2     Miscellaneous utilities specific t
ii  libc6                         2.3.5-8    GNU C Library: Shared libraries an
ii  libdb4.3                      4.3.29-3   Berkeley v4.3 Database Libraries [
ii  libexpat1                     1.95.8-3   XML parsing C library - runtime li
ii  libgcc1                       1:4.0.2-5  GCC support library
ii  libmagic1                     4.15-2     File type determination library us
ii  lsb-base                      3.0-14     Linux Standard Base 3.0 init scrip
ii  mime-support                  3.35-1     MIME files 'mime.types' & 'mailcap
ii  net-tools                     1.60-17    The NET-3 networking toolkit
ii  openssl                       0.9.8a-6   Secure Socket Layer (SSL) binary a
ii  ssl-cert                      1.0-11     Simple debconf wrapper for openssl

apache2-common recommends no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
Version: 2.2.3-2

This was fixed by mostly rewriting the init script.

-- 
Tollef Fog Heen                                                        ,''`.
UNIX is user friendly, it's just picky about who its friends are      : :' :
                                                                      `. `' 
                                                                        `-  

--- End Message ---

Reply to: