diff options
author | martti <martti@pkgsrc.org> | 2005-12-30 06:29:41 +0000 |
---|---|---|
committer | martti <martti@pkgsrc.org> | 2005-12-30 06:29:41 +0000 |
commit | ee0069539e4b29f005bf10b5b1abe0e2ad02aa5a (patch) | |
tree | 7e3fa7e0871dce1eac2e0cb957abbbc413c67819 /mail/postfix | |
parent | 2003751e2770909ca458244f9f95f3cab3e2070c (diff) | |
download | pkgsrc-ee0069539e4b29f005bf10b5b1abe0e2ad02aa5a.tar.gz |
Make sure ${spooletcdir} exists. Bump PKGREVISION as this affects
the binary package.
Diffstat (limited to 'mail/postfix')
-rw-r--r-- | mail/postfix/Makefile | 4 | ||||
-rw-r--r-- | mail/postfix/files/postfix.sh | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/mail/postfix/Makefile b/mail/postfix/Makefile index 6d5a552b2b3..a8974bffb60 100644 --- a/mail/postfix/Makefile +++ b/mail/postfix/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.171 2005/12/29 06:21:52 jlam Exp $ +# $NetBSD: Makefile,v 1.172 2005/12/30 06:29:41 martti Exp $ DISTNAME= postfix-2.2.6 -#PKGREVISION= 1 +PKGREVISION= 1 CATEGORIES= mail MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/official/ diff --git a/mail/postfix/files/postfix.sh b/mail/postfix/files/postfix.sh index 6daf21c2375..6c35eb99a21 100644 --- a/mail/postfix/files/postfix.sh +++ b/mail/postfix/files/postfix.sh @@ -1,6 +1,6 @@ #!@RCD_SCRIPTS_SHELL@ # -# $NetBSD: postfix.sh,v 1.4 2004/07/19 22:02:15 jlam Exp $ +# $NetBSD: postfix.sh,v 1.5 2005/12/30 06:29:41 martti Exp $ # # PROVIDE: mail @@ -30,6 +30,7 @@ postfix_precmd() # is used). # + [ ! -d ${spooletcdir} ] && mkdir -p ${spooletcdir} for f in localtime resolv.conf services; do if [ -f /etc/$f ]; then cmp -s /etc/$f ${spooletcdir}/$f || \ |