media-sound/mt-daapd: fix bug 335298
authorAndrew Savchenko <bircoph@gentoo.org>
Sun, 12 Feb 2017 14:05:04 +0000 (17:05 +0300)
committerAndrew Savchenko <bircoph@gentoo.org>
Sun, 12 Feb 2017 14:05:04 +0000 (17:05 +0300)
Make init script POSIX compliant.

Package-Manager: Portage-2.3.3, Repoman-2.3.1
Signed-off-by: Andrew Savchenko <bircoph@gentoo.org>
media-sound/mt-daapd/files/mt-daapd.init.2

index 7c0a69651fb1dac58eebc388a201d1d29b760f1b..4211bdff92badb453ea1b8ae877503797f29af16 100644 (file)
@@ -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