diff options
author | Olli Hauer <ohauer@FreeBSD.org> | 2014-12-25 13:44:00 +0000 |
---|---|---|
committer | Olli Hauer <ohauer@FreeBSD.org> | 2014-12-25 13:44:00 +0000 |
commit | 2468007643f7d6a1de59e1a3ea98ec59f0929c71 (patch) | |
tree | afe786fff9f02f8490805b951374024ce224575d | |
parent | Dancer2::Plugin::Email provides an easy way of handling text or (diff) |
- 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)
-rw-r--r-- | mail/mailgraph/Makefile | 2 | ||||
-rw-r--r-- | mail/mailgraph/files/mailgraph.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mail/mailgraph/Makefile b/mail/mailgraph/Makefile index ce5c23d12ed3..754a4325fd26 100644 --- a/mail/mailgraph/Makefile +++ b/mail/mailgraph/Makefile @@ -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/ diff --git a/mail/mailgraph/files/mailgraph.in b/mail/mailgraph/files/mailgraph.in index 1112468706e1..eaf57d9e1ed6 100644 --- a/mail/mailgraph/files/mailgraph.in +++ b/mail/mailgraph/files/mailgraph.in @@ -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 |