diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-07-01 09:36:21 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-07-01 09:36:21 +0000 |
commit | a6abda876f30000bfc005ebafb6a812aa6808f50 (patch) | |
tree | d57f4e1ba8265f09d6219a4482c8a5cb91faeaf9 /main/dovecot | |
parent | d75e9a94532f034e3272486002a2ff01713f4bc2 (diff) | |
download | aports-a6abda876f30000bfc005ebafb6a812aa6808f50.tar.bz2 aports-a6abda876f30000bfc005ebafb6a812aa6808f50.tar.xz |
main/dovecot: fix another typo in post-install
Diffstat (limited to 'main/dovecot')
-rw-r--r-- | main/dovecot/APKBUILD | 2 | ||||
-rw-r--r-- | main/dovecot/dovecot.post-install | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/main/dovecot/APKBUILD b/main/dovecot/APKBUILD index 8d7de8c4c0..9246417c89 100644 --- a/main/dovecot/APKBUILD +++ b/main/dovecot/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=dovecot pkgver=1.2.12 -pkgrel=2 +pkgrel=3 pkgdesc="IMAP and POP3 server" url="http://www.dovecot.org/" license="LGPL-2.1" diff --git a/main/dovecot/dovecot.post-install b/main/dovecot/dovecot.post-install index ed3ebf1247..d75f01ea20 100644 --- a/main/dovecot/dovecot.post-install +++ b/main/dovecot/dovecot.post-install @@ -16,8 +16,8 @@ dovecot_conf=/etc/dovecot/dovecot.conf ssl_cert_file= ssl_key_file= if [ -r "$dovecot_conf" ]; then - ssl_cert_file=$(awk -F'[[:space:]*=[[:space:]]*' '/^ssl_cert_file/ { print $2}' $dovecot_conf) - ssl_cert_file=$(awk -F'[[:space:]*=[[:space:]]*' '/^ssl_key_file/ { print $2}' $dovecot_conf) + ssl_cert_file=$(awk -F'[[:space:]]*=[[:space:]]*' '/^ssl_cert_file/ { print $2}' $dovecot_conf) + ssl_cert_file=$(awk -F'[[:space:]]*=[[:space:]]*' '/^ssl_key_file/ { print $2}' $dovecot_conf) fi CERTFILE=${ssl_cert_file:-$CERTDIR/server.pem} |