Your message dated Tue, 13 Mar 2007 09:29:54 +0100
with message-id <[EMAIL PROTECTED]>
and subject line Bug#414676: typo in postinst script
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: dovecot-common
Version: 1.0.rc26-3
Severity: normal
Tags: patch
Hi
when configuring dovecot-common, following errors are printed:
Setting up dovecot-common (1.0.rc26-3) ...
[: 64: missing ]
[: 64: missing ]
[: 64: missing ]
You already have ssl certs for dovecot.
Starting mail server: dovecot.
It is caused by missing space before ] in if statement, attached patch
fixes this.
--
Michal Čihař | http://cihar.com | http://blog.cihar.com
-- System Information:
Debian Release: 4.0
APT prefers unstable
APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Shell: /bin/sh linked to /bin/dash
Kernel: Linux 2.6.18-3-amd64
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Versions of packages dovecot-common depends on:
ii adduser 3.102 Add and remove users and groups
ii libc6 2.3.6.ds1-13 GNU C Library: Shared libraries
ii libcomer 1.39+1.40-WIP-2006.11.14+dfsg-2 common error description library
ii libkrb53 1.4.4-7 MIT Kerberos runtime libraries
ii libldap2 2.1.30-13.4 OpenLDAP libraries
ii libmysql 5.0.32-7 mysql database client library
ii libpam-r 0.79-4 Runtime support for the PAM librar
ii libpam0g 0.79-4 Pluggable Authentication Modules l
ii libpq4 8.1.8-1 PostgreSQL C client library
ii libsqlit 3.3.8-1.1 SQLite 3 shared library
ii libssl0. 0.9.8e-4 SSL shared libraries
ii openssl 0.9.8e-4 Secure Socket Layer (SSL) binary a
ii ucf 2.0020 Update Configuration File: preserv
ii zlib1g 1:1.2.3-13 compression library - runtime
dovecot-common recommends no packages.
-- no debconf information
--- /tmp/dovecot-common.postinst 2007-03-13 09:15:30.000000000 +0100
+++ dovecot-common.postinst 2007-03-13 09:15:35.000000000 +0100
@@ -9,7 +9,7 @@
# configuration file in /etc/dovecot.
ucf --three-way /usr/share/dovecot/$conffile /etc/dovecot/$conffile
ucfr dovecot-common /etc/dovecot/$conffile
- if [ "$conffile" != "dovecot.conf"]; then
+ if [ "$conffile" != "dovecot.conf" ]; then
chmod 0600 /etc/dovecot/$conffile
fi
done
--- End Message ---
--- Begin Message ---
* 2007-03-13 09:28, Michal Cihar wrote:
> Package: dovecot-common
> Version: 1.0.rc26-3
> Severity: normal
> Tags: patch
Thanks, it is a stupid error from my side: a simple statement which I did
not test properly. I already uploaded 1.0.rc26-4 which fixes the problem.
Cheers,
--
Fabio Tranchitella http://www.kobold.it
Free Software Developer and Consultant http://www.tranchitella.it
_____________________________________________________________________
1024D/7F961564, fpr 5465 6E69 E559 6466 BF3D 9F01 2BF8 EE2B 7F96 1564
--- End Message ---