From: Andrew Savchenko Date: Sun, 12 Feb 2017 14:05:04 +0000 (+0300) Subject: media-sound/mt-daapd: fix bug 335298 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=675df0a12902169b7ae1a24d286b7db773cf9d68;p=gentoo.git media-sound/mt-daapd: fix bug 335298 Make init script POSIX compliant. Package-Manager: Portage-2.3.3, Repoman-2.3.1 Signed-off-by: Andrew Savchenko --- diff --git a/media-sound/mt-daapd/files/mt-daapd.init.2 b/media-sound/mt-daapd/files/mt-daapd.init.2 index 7c0a69651fb1..4211bdff92ba 100644 --- a/media-sound/mt-daapd/files/mt-daapd.init.2 +++ b/media-sound/mt-daapd/files/mt-daapd.init.2 @@ -1,5 +1,5 @@ #!/sbin/openrc-run -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ # Somehow based on init.d file shipped with mt-daapd itself. @@ -17,7 +17,7 @@ if [ -f /lib/librc.so -o -f /etc/init.d/sysfs -o -f /lib/rc/version ]; then fi CONF="${myservice##*.}" -if [[ -n ${CONF} && ${myservice} != "mt-daapd" ]]; then +if [ -n ${CONF} -a ${myservice} != "mt-daapd" ]; then PIDFILE="/var/run/mt-daapd.${CONF}.pid" CONFFILE="/etc/mt-daapd.d/${CONF}.conf" else