diff options
author | jlam <jlam@pkgsrc.org> | 2007-09-07 14:18:11 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2007-09-07 14:18:11 +0000 |
commit | 5140639bfb3064f5ac6e617b2c4363fc19f3bd88 (patch) | |
tree | 35e8d88500164eaccfbc289de6bfcd24b3698c54 /mail/courier-mta/files | |
parent | a0efdcea04a307edc293930638215a9544aad40e (diff) | |
download | pkgsrc-5140639bfb3064f5ac6e617b2c4363fc19f3bd88.tar.gz |
Fix improperly quoted string in courieresmpts rc.d script. Bump
PKGREVISION to 2.
Diffstat (limited to 'mail/courier-mta/files')
-rw-r--r-- | mail/courier-mta/files/courieresmtps.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/courier-mta/files/courieresmtps.sh b/mail/courier-mta/files/courieresmtps.sh index a0138b2a578..c4adc44a2f7 100644 --- a/mail/courier-mta/files/courieresmtps.sh +++ b/mail/courier-mta/files/courieresmtps.sh @@ -1,6 +1,6 @@ #!@RCD_SCRIPTS_SHELL@ # -# $NetBSD: courieresmtps.sh,v 1.3 2007/08/10 17:57:04 jlam Exp $ +# $NetBSD: courieresmtps.sh,v 1.4 2007/09/07 14:18:11 jlam Exp $ # # Courier ESMTP/SSL services daemon # @@ -41,7 +41,7 @@ courieresmtps_doit() return 1 fi if [ ! -f "$f" ] && - [ "$f" = "@PKG_SYSCONFDIR@/esmtpd.pem ]; then + [ "$f" = "@PKG_SYSCONFDIR@/esmtpd.pem" ]; then @ECHO@ "Generating ESMTP SSL certificate in $f." @PREFIX@/sbin/mkesmtpdcert >/dev/null 2>&1 fi |