commit: 675df0a12902169b7ae1a24d286b7db773cf9d68
Author: Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 12 14:05:04 2017 +0000
Commit: Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
CommitDate: Sun Feb 12 14:05:04 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=675df0a1
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 <bircoph <AT> gentoo.org>
media-sound/mt-daapd/files/mt-daapd.init.2 | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-sound/mt-daapd/files/mt-daapd.init.2
b/media-sound/mt-daapd/files/mt-daapd.init.2
index 7c0a69651f..4211bdff92 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