+lsb (3.1-8) unstable; urgency=low
+
+ * Fix killproc() to work if signal isn't specified; also fix the
+ pidfile check in both killproc() and pidofproc(). (Closes: #370075)
+
+ -- Chris Lawrence <lawrencc@debian.org> Sat, 3 Jun 2006 02:45:55 -0400
+
+lsb (3.1-7) unstable; urgency=low
+
+ * lsb-graphics: Depend on libx11-6 | xlibs. (Closes: #369955)
+
+ -- Chris Lawrence <lawrencc@debian.org> Fri, 2 Jun 2006 15:47:52 -0400
+
lsb (3.1-6) unstable; urgency=low
* Replace uses of $n with ${n:-} where $n could be unbound.
Package: lsb-graphics
Architecture: any
-Depends: lsb-core, xlibmesa3-gl | libgl1, xlibs, ${misc:Depends}
+Depends: lsb-core, xlibmesa3-gl | libgl1, libx11-6 | xlibs, ${misc:Depends}
Conflicts: libutahglx1
Provides: lsb-graphics-noarch, ${provides}
Description: Linux Standard Base 3.1 graphics support package
local pidfile line i pids= status specified pid
set -- `POSIXLY_CORRECT=1 getopt "p:" $*`
pidfile=
- specified=0
+ specified=
for i in $*; do
case $i in
local pidfile sig status base i specified
set -- `POSIXLY_CORRECT=1 getopt "p:" $*`
pidfile=
- specified=0
+ specified=
for i in $*; do
case $i in
fi
if [ $specified ]; then
- sig=$(echo $2 | sed -e 's/^-\(.*\)/\1/')
+ sig=$(echo ${2:-} | sed -e 's/^-\(.*\)/\1/')
sig=$(echo $sig | sed -e 's/^SIG\(.*\)/\1/')
+ sig=${sig:-TERM}
/sbin/start-stop-daemon --stop --pidfile "$pidfile" --signal $sig --quiet --name "$base"
status="$?"
[ "$status" = 1 ] && return 3 # program is not running