diff options
| author | Damien Lespiau <damien.lespiau@intel.com> | 2015-09-30 17:41:43 +0100 |
|---|---|---|
| committer | Stephen Finucane <stephen.finucane@intel.com> | 2015-11-12 04:33:29 +0000 |
| commit | 909ef1a85199186dab6bca1329834623431e48dd (patch) | |
| tree | 0166de1ce2dbcc550872c0ee816c77f85aeeb761 /docs | |
| parent | c6b1d3b922156ad69c40ce09b3e89919d19bb67c (diff) | |
| download | patchwork-909ef1a85199186dab6bca1329834623431e48dd.tar patchwork-909ef1a85199186dab6bca1329834623431e48dd.tar.gz | |
docs: Remove 'apps' from paths
The patchwork directory structure has moved away from putting the
Django app(s) into 'apps/'
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Reviewed-by: Stephen Finucane <stephen.finucane@intel.com>
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/installation.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/installation.md b/docs/installation.md index 6847b61..121917e 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -236,14 +236,14 @@ Your MTA will need to deliver mail to the parsemail script in the email/directory. (Note, do not use the `parsemail.py` script 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`. 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 |