X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-oa0-f41.google.com (mail-oa0-f41.google.com [209.85.219.41]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 934D6DC0157 for ; Sun, 13 Apr 2014 06:53:21 +0000 (UTC) Received: by mail-oa0-f41.google.com with SMTP id j17so7962152oag.14 for ; Sat, 12 Apr 2014 23:53:20 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=/y20cjysMtLejjElxXn5sfmsuEGNJT/IONaDmKyPv40=; b=Mh2iP0+QAZpyeddUt0xJCry+4YKivGAfs/AddHk3OyIZBn8xypoRVdLIuFiH5Onslt XTXmmg7fnubGGOuctt35by6RckgAsy/WJDwCexb+QcNP0eisGObRu/12e2DHo8p9xmSX 0CF+jNophivZZFlMf3i5gNWSvAQHYuqeTG3NkYWHFOawptTgdWd2RSNI4pNIug1gCaeh tZ3MKgbcUDK+k+2R8cI1wOIQlDhGMbXfbFe4wEfmiOrHRcWE0bqtnK1cBa5DATWkSr8T ZKCCpN51Z/Rd7z+suXnItVs+1yWeLV0U7Lxy+7kzvuN8227rXSyoNWBL/MLGuNqXZ4fl ZefA== X-Gm-Message-State: ALoCoQk711soiL5APlqrUN64n0Pc0tzEQTbLWqWLQig+M7qeCkxFtOKK/jXmVvRVMwhKbR09uWyW X-Received: by 10.60.134.137 with SMTP id pk9mr27877552oeb.40.1397372000660; Sat, 12 Apr 2014 23:53:20 -0700 (PDT) Received: from alpine-build.home.hindbra.in ([24.35.135.28]) by mx.google.com with ESMTPSA id zm8sm21421521obc.16.2014.04.12.23.53.19 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 12 Apr 2014 23:53:19 -0700 (PDT) From: Tobie Booth To: alpine-devel@lists.alpinelinux.org Cc: Tobie Booth Subject: [alpine-devel] [PATCH] Updated freeswitch.initd to include missing path switches. Date: Sun, 13 Apr 2014 01:53:01 -0500 Message-Id: <1397371981-3308-1-git-send-email-tbooth@hindbra.in> X-Mailer: git-send-email 1.8.4.3 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Changed the freeswitch package's freeswitch.initd to include the switches for the grammar, recordings, storage, and sounds directories. Currently without them it's trying to use the default /usr prefix making voicemail and other things unusable out of the box. The switches are set as follows: Recordings - /var/lib/freeswitch/recordings (this directory already exists) Grammar - /var/lib/freeswitch/grammar (this directory already exists) Sounds - /usr/share/freeswitch/sounds (this directory already exists) Storage - /var/lib/freeswitch/ (this will cause http_file_cache and voicemail directories to be created on first start) Thanks. --- main/freeswitch/freeswitch.initd | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/main/freeswitch/freeswitch.initd b/main/freeswitch/freeswitch.initd index cc9bac4..c56a49d 100755 --- a/main/freeswitch/freeswitch.initd +++ b/main/freeswitch/freeswitch.initd @@ -31,8 +31,12 @@ start() { -- \ -nc -conf /etc/freeswitch -log /var/log/freeswitch \ -run /var/run/freeswitch -db /var/lib/freeswitch/db \ + -recordings /var/lib/freeswitch/recordings \ + -grammar /var/lib/freeswitch/grammar \ + -sounds /usr/share/freeswitch/sounds \ -htdocs /usr/share/freeswitch/htdocs \ - -scripts /etc/freeswitch/scripts ${OPTS} + -scripts /etc/freeswitch/scripts \ + -storage /var/lib/freeswitch ${OPTS} eend $? } -- 1.8.4.3 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---