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/dovecot.post-install | |
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/dovecot.post-install')
-rw-r--r-- | main/dovecot/dovecot.post-install | 4 |
1 files changed, 2 insertions, 2 deletions
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} |