X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@lists.alpinelinux.org Received: from mail-gw0-f54.google.com (mail-gw0-f54.google.com [74.125.83.54]) by lists.alpinelinux.org (Postfix) with ESMTP id 237CA1EBFFD for ; Thu, 20 Jan 2011 21:25:48 +0000 (UTC) Received: by gwj21 with SMTP id 21so335673gwj.13 for ; Thu, 20 Jan 2011 13:25:47 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:from:to:cc:subject:date:message-id:x-mailer; bh=kcJ8PRhx7O7d0loIvqKJNeD5fyl9KAFWYX5rjLJ2xls=; b=azphn1SSePbOiygRteEnMMemReL5YIOf4fD2Mcl3OvGIObaKHnGhBq0PVqVeHKRMDh /h5276S6dbL1JX7nvisznJa/OvAMcAUeY4gqVo/Yhu6JLCRxZtq4OVYEkcZD0+jsSBUo b858xiR1g+Cg0ANrxZ7Evs7V3oSauEnUIsWzY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=cOHdlDrmcbn4Oi6wMjht7HE5Ggm5zbCtrer+Y8njA6E8r0QQLbJ8x+r9ZfM58enLxV MZTmYf/ELUjoalYdcA7ZiR+ExhF6vjiuawKWiTkqa98YpkqjkitL1DAMEpOGELHrqHDt pZToKAyGA+K2ioTqS/JMyePNTtv7OaysXA2sw= Received: by 10.100.228.12 with SMTP id a12mr1813031anh.57.1295558747236; Thu, 20 Jan 2011 13:25:47 -0800 (PST) Received: from localhost.localdomain (mx1.wtbts.ca [216.249.2.10]) by mx.google.com with ESMTPS id w4sm10443036anw.16.2011.01.20.13.25.44 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 20 Jan 2011 13:25:45 -0800 (PST) From: Jeff Bilyk To: alpine-devel@lists.alpinelinux.org Cc: Jeff Bilyk Subject: [alpine-devel] [PATCH] main/kamailio: modify init script to always start after postgresql and pg-restore Date: Thu, 20 Jan 2011 21:25:32 +0000 Message-Id: <1295558732-1992-1-git-send-email-jbilyk@gmail.com> X-Mailer: git-send-email 1.7.3.5 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: modify init script to always start after postgres and pg-restore --- main/kamailio/kamailio.initd | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/main/kamailio/kamailio.initd b/main/kamailio/kamailio.initd index ee4e2ec..6afccb5 100644 --- a/main/kamailio/kamailio.initd +++ b/main/kamailio/kamailio.initd @@ -5,7 +5,7 @@ pidfile=/var/run/kamailio/kamailio.pid depend() { need net - after firewall + after firewall postgresql pg-restore } start() { -- 1.7.3.5 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---