From patchwork Wed Sep 30 16:41:43 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Damien Lespiau X-Patchwork-Id: 524484 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [103.22.144.68]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id C8C52140D4D for ; Thu, 1 Oct 2015 02:42:53 +1000 (AEST) Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 99BED1A05DA for ; Thu, 1 Oct 2015 02:42:53 +1000 (AEST) X-Original-To: patchwork@lists.ozlabs.org Delivered-To: patchwork@lists.ozlabs.org Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by lists.ozlabs.org (Postfix) with ESMTP id D9CA11A05FD for ; Thu, 1 Oct 2015 02:41:53 +1000 (AEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga102.jf.intel.com with ESMTP; 30 Sep 2015 09:41:53 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,613,1437462000"; d="scan'208";a="781070000" Received: from rloiacon-mobl1.ger.corp.intel.com (HELO strange.ger.corp.intel.com) ([10.252.21.193]) by orsmga001.jf.intel.com with ESMTP; 30 Sep 2015 09:41:52 -0700 From: Damien Lespiau To: patchwork@lists.ozlabs.org Subject: [PATCH 6/6] docs: Remove 'apps' from paths in the documentation Date: Wed, 30 Sep 2015 17:41:43 +0100 Message-Id: <1443631303-28679-7-git-send-email-damien.lespiau@intel.com> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1443631303-28679-1-git-send-email-damien.lespiau@intel.com> References: <1443631303-28679-1-git-send-email-damien.lespiau@intel.com> X-BeenThere: patchwork@lists.ozlabs.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Patchwork development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: patchwork-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Patchwork" The patchwork directory structure has moved away from putting the django app(s) into apps/ Signed-off-by: Damien Lespiau Reviewed-by: Stephen Finucane Reviewed-by: Stephen Finucane --- docs/installation.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/installation.rst b/docs/installation.rst index f69d8c6..25f8a10 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -302,7 +302,7 @@ directly). Something like this in /etc/aliases is suitable for postfix: :: - patchwork: "|/srv/patchwork/apps/patchwork/bin/parsemail.sh" + patchwork: "|/srv/patchwork/patchwork/bin/parsemail.sh" You may need to customise the ``parsemail.sh`` script if you haven't installed patchwork in ``/srv/patchwork``. @@ -311,7 +311,7 @@ Test that you can deliver a patch to this script: :: - sudo -u nobody /srv/patchwork/apps/patchwork/bin/parsemail.sh < mail + sudo -u nobody /srv/patchwork/patchwork/bin/parsemail.sh < mail Set up the patchwork cron script --------------------------------