Package: release.debian.org Severity: normal Tags: buster User: [email protected] Usertags: pu
Dear release team, I have just uploaded (via Utkarsh Gupta as sponsor) the following change for tinyproxy in buster: + * debian/tinyproxy.init: + + Only set PIDDIR, if PIDFILE is a non-zero length string. (Closes: + #948283). -> RC bug fix. Thanks+Greets, Mike -- System Information: Debian Release: 10.3 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 'stable') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 4.19.0-8-amd64 (SMP w/4 CPU cores) Kernel taint flags: TAINT_WARN, TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled
diff -Nru tinyproxy-1.10.0/debian/changelog tinyproxy-1.10.0/debian/changelog --- tinyproxy-1.10.0/debian/changelog 2018-10-23 12:47:18.000000000 +0200 +++ tinyproxy-1.10.0/debian/changelog 2020-03-31 12:31:24.000000000 +0200 @@ -1,3 +1,11 @@ +tinyproxy (1.10.0-2+deb10u1) buster; urgency=medium + + * debian/tinyproxy.init: + + Only set PIDDIR, if PIDFILE is a non-zero length string. (Closes: + #948283). + + -- Mike Gabriel <[email protected]> Tue, 31 Mar 2020 12:31:24 +0200 + tinyproxy (1.10.0-2) unstable; urgency=medium * debian/changelog: diff -Nru tinyproxy-1.10.0/debian/tinyproxy.init tinyproxy-1.10.0/debian/tinyproxy.init --- tinyproxy-1.10.0/debian/tinyproxy.init 2018-09-04 14:58:13.000000000 +0200 +++ tinyproxy-1.10.0/debian/tinyproxy.init 2020-03-31 12:30:56.000000000 +0200 @@ -39,7 +39,9 @@ GROUP=$(grep -i '^Group[[:space:]]' "$CONFIG" | awk '{print $2}') PIDFILE=$(grep -i '^PidFile[[:space:]]' "$CONFIG" | awk '{print $2}' |\ sed -e 's/"//g') - PIDDIR=`dirname "$PIDFILE"` + if [ -n "$PIDFILE" ];then + PIDDIR=$(dirname "$PIDFILE") + fi if [ -n "$PIDDIR" -a "$PIDDIR" != "/run" ]; then if [ ! -d "$PIDDIR" ]; then mkdir "$PIDDIR"

