From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1LTlOn-0002R3-VW for garchives@archives.gentoo.org; Sun, 01 Feb 2009 23:06:46 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E7E22E0333; Sun, 1 Feb 2009 23:06:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id C878CE0333 for ; Sun, 1 Feb 2009 23:06:44 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 6B2DD64725 for ; Sun, 1 Feb 2009 23:06:44 +0000 (UTC) Received: from scarabeus by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1LTlOm-00038Z-7e for gentoo-commits@lists.gentoo.org; Sun, 01 Feb 2009 23:06:44 +0000 From: "Tomas Chvatal (scarabeus)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, scarabeus@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sci-misc/boinc/files: boinc.init X-VCS-Repository: gentoo-x86 X-VCS-Files: boinc.init X-VCS-Directories: sci-misc/boinc/files X-VCS-Committer: scarabeus X-VCS-Committer-Name: Tomas Chvatal Content-Type: text/plain; charset=utf8 Message-Id: Sender: Tomas Chvatal Date: Sun, 01 Feb 2009 23:06:44 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: c6c702e4-ad51-42f9-8815-6f80cb7080d1 X-Archives-Hash: 6a68da921665496c0077134851f8e97c scarabeus 09/02/01 23:06:44 Modified: boinc.init Log: Fix initscript for baselayout-1. This time for real :]. Per bug #257113= . Big thanks to Andrea Conti (Portage version: 2.2_rc23/cvs/Linux x86_64) Revision Changes Path 1.9 sci-misc/boinc/files/boinc.init file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/boinc/fil= es/boinc.init?rev=3D1.9&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/boinc/fil= es/boinc.init?rev=3D1.9&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-misc/boinc/fil= es/boinc.init?r1=3D1.8&r2=3D1.9 Index: boinc.init =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/sci-misc/boinc/files/boinc.init,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- boinc.init 1 Feb 2009 14:33:37 -0000 1.8 +++ boinc.init 1 Feb 2009 23:06:44 -0000 1.9 @@ -66,15 +66,15 @@ =20 # check for baselayout version if [[ "`start-stop-daemon --version |awk -F' ' '{print $2}'`" =3D "(Ope= nRC)" ]]; then - PARAMS=3D"--stdout ${LOGFILE} --stderr ${LOGFILE} -- ${ARGS}" + PARAMS=3D"--background --stdout ${LOGFILE} --stderr ${LOGFILE} -- ${AR= GS}" else - PARAMS=3D"-- ${ARGS} &> ${LOGFILE}" + PARAMS=3D"-- ${ARGS} >> ${LOGFILE} 2>&1 &" fi =20 - ${CHRT} start-stop-daemon \ + eval ${CHRT} start-stop-daemon \ --quiet --start --chdir ${RUNTIMEDIR} \ --exec ${BOINCBIN} --chuid ${USER}:${GROUP} \ - --background --nicelevel ${NICELEVEL} \ + --nicelevel ${NICELEVEL} \ ${PARAMS} =20 RESULT=3D$?