- fix broken rc script from last commit.

(var do not expandinside singel quote, so the port failed to start)
- bump PORTREVISION

PR:		196090 (followup)
Approved by:	maintainer (implicit)
This commit is contained in:
Olli Hauer 2014-12-25 13:44:00 +00:00
parent 064663b0de
commit 2468007643
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=375551
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
PORTNAME= mailgraph
PORTVERSION= 1.14
PORTREVISION= 7
PORTREVISION= 8
CATEGORIES= mail
MASTER_SITES= http://mailgraph.schweikert.ch/pub/ \
http://mailgraph.schweikert.ch/pub/old/

View File

@ -25,7 +25,7 @@ start_precmd()
{
mkdir -p "$mailgraph_chdir"
chown "$mailgraph_user" "$mailgraph_chdir"
if ! su -m '$mailgraph_user' -c 'sh -c "[ -r '$mailgraph_maillog' ]"'; then
if ! su -m "$mailgraph_user" -c "sh -c \"[ -r "$mailgraph_maillog" ]\""; then
echo "MAILGRAPH CANNOT RUN: $mailgraph_maillog not readable by $mailgraph_user"
return 1
fi