X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-in-06.arcor-online.net (mail-in-06.arcor-online.net [151.189.21.46]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id DD839DC0179 for ; Mon, 30 Apr 2012 11:05:48 +0000 (UTC) Received: from mail-in-12-z2.arcor-online.net (mail-in-12-z2.arcor-online.net [151.189.8.29]) by mx.arcor.de (Postfix) with ESMTP id 603DF10BC51 for ; Mon, 30 Apr 2012 13:05:47 +0200 (CEST) Received: from mail-in-15.arcor-online.net (mail-in-15.arcor-online.net [151.189.21.55]) by mail-in-12-z2.arcor-online.net (Postfix) with ESMTP id 54C9F1DF30E for ; Mon, 30 Apr 2012 13:05:47 +0200 (CEST) Received: from [192.168.16.209] (85-127-180-102.dynamic.xdsl-line.inode.at [85.127.180.102]) (Authenticated sender: panthera.tigris@arcor.de) by mail-in-15.arcor-online.net (Postfix) with ESMTPA id 36DBD1AB8ED for ; Mon, 30 Apr 2012 13:05:47 +0200 (CEST) X-DKIM: Sendmail DKIM Filter v2.8.2 mail-in-15.arcor-online.net 36DBD1AB8ED DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=arcor.de; s=mail-in; t=1335783947; bh=AykUcBF05P0HsTpGUQK5SkgbiBTJZy9a3Vu/NtOzuUI=; h=Message-ID:Date:From:MIME-Version:To:Subject:References: In-Reply-To:Content-Type:Content-Transfer-Encoding; b=Co3Yy3SqSADhbT7EFXGGq1r66OYaJtLUQQAkhAMSnp/IAi0GjtNy3RUElD+ZlMFj6 psLTnA6buHHcMu3fwEB8RDPspDZhCa8nMtE0S761uj1DN8++IPfXIkG9L42kf8mjvS g4HL+th+muD8DWsgFQxvwimEKW8Gpkzf3/Q7baTQ= Message-ID: <4F9E720A.8030109@arcor.de> Date: Mon, 30 Apr 2012 13:05:46 +0200 From: Der Tiger User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:11.0) Gecko/20120329 Thunderbird/11.0.1 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 To: "alpine-devel@lists.alpinelinux.org" Subject: Re: [alpine-devel] Alpine Linux 2.4.0 RC1 is out References: <20120427201155.7a809e37@alpinelinux.org> In-Reply-To: <20120427201155.7a809e37@alpinelinux.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Hi Natanael, Nicely done! kernel 3.3.3 8-) , dhcpd, dhcpcd, bind and asterisk 10.3 are running smoothly. Since I am currently busy working on another package, I'd like to ask you to apply the patch stated below in order to prevent mini_httpd from crashing during boot. I am new to GIT and still figuring out how to commit properly. Meanwhile, I'll have to rely on your help. Thanks! Kind Regards, Tiger --- /etc/init.d/mini_httpd +++ /etc/init.d/mini_httpd @@ -4,6 +4,7 @@ # $Header: /var/cvsroot/gentoo-x86/www-servers/mini_httpd/files/mini_httpd.init,v 1.2 2007/08/26 21:20:21 bangert Exp $ pidfile=/var/run/mini_httpd/${SVCNAME}.pid +logfile=/var/log/mini_httpd/${SVCNAME}.log depend() { need net @@ -12,9 +13,11 @@ start() { ebegin "Starting $SVCNAME" + checkpath -d ${pidfile%/*} + checkpath -d ${logfile%/*} start-stop-daemon --quiet --start --exec /usr/sbin/mini_httpd \ --pidfile $pidfile -- -i $pidfile \ - ${MINI_HTTPD_OPTS:--C /etc/${SVCNAME}.conf -l /var/log/mini_httpd/${SVCNAME}.log} + ${MINI_HTTPD_OPTS:--C /etc/${SVCNAME}.conf -l $logfile} eend $? } --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---