Make init script POSIX compilant, bug 171691, thanks to Natanael Copa <natanael.copa...
authorRaúl Porcel <armin76@gentoo.org>
Wed, 21 Mar 2007 18:42:05 +0000 (18:42 +0000)
committerRaúl Porcel <armin76@gentoo.org>
Wed, 21 Mar 2007 18:42:05 +0000 (18:42 +0000)
Package-Manager: portage-2.1.2.2

net-p2p/btpd/ChangeLog
net-p2p/btpd/files/initd_btpd

index 71327688768f01c923496edcfa9cbef08aa271eb..86ef527594eae7d1e25dc82af03f56969c99a4c9 100644 (file)
@@ -1,6 +1,10 @@
 # ChangeLog for net-p2p/btpd
 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/btpd/ChangeLog,v 1.3 2007/03/05 15:13:52 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/btpd/ChangeLog,v 1.4 2007/03/21 18:42:05 armin76 Exp $
+
+  21 Mar 2007; Raúl Porcel <armin76@gentoo.org> files/initd_btpd:
+  Make init script POSIX compilant, bug 171691, thanks to Natanael Copa
+  <natanael.copa at gmail dot com> for the patch
 
 *btpd-0.12 (05 Mar 2007)
 
index 2d54e9bdb758a7c0f5cce36c42a28344a78bab2d..02505e95252c5a16e315c18a448dfcb2212fd6f3 100644 (file)
@@ -51,7 +51,7 @@ stop() {
        local retries=0
 
        ebegin "Stopping BitTorrent Protocol Daemon"
-       while [[ -n "`pgrep -u ${BTPDUSER} btpd`" && ${retries} -lt 4 ]]; do
+       while [ -n "`pgrep -u ${BTPDUSER} btpd`" ] && [ ${retries} -lt 4 ]; do
                if test ${retries} -eq 0; then
                        su ${BTPDUSER} -c "btcli kill"
                else
@@ -59,7 +59,7 @@ stop() {
                fi
 
                sleep 1
-               let retries=$retries+1
+               retries=$(( $retries + 1 ))
        done
 
        if [ ${retries} -lt 4 ]; then