summaryrefslogtreecommitdiffstats
path: root/main/dovecot/dovecot.post-install
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2010-07-01 09:36:21 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2010-07-01 09:36:21 +0000
commita6abda876f30000bfc005ebafb6a812aa6808f50 (patch)
treed57f4e1ba8265f09d6219a4482c8a5cb91faeaf9 /main/dovecot/dovecot.post-install
parentd75e9a94532f034e3272486002a2ff01713f4bc2 (diff)
main/dovecot: fix another typo in post-install
Diffstat (limited to 'main/dovecot/dovecot.post-install')
-rw-r--r--main/dovecot/dovecot.post-install4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/dovecot/dovecot.post-install b/main/dovecot/dovecot.post-install
index ed3ebf1247e..d75f01ea208 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}