Bug #1021
Install fails on Ubuntu 11.10-server (Wheezy)
| Status: | Need test | Start date: | 19 Oct 2011 | |
|---|---|---|---|---|
| Priority: | Normal | Due date: | ||
| Assignee: | - | % Done: | 100% |
|
| Category: | - | |||
| Target version: | - |
Description
Do you want to continue [Y/n]? y
Setting up openpanel-mod-postfixcourier (1.1.2+squeeze) ...
postconf: warning: maildrop_destination_recipient_limit: unknown parameter
- Setting maildrop_destination_recipient_limit
* Stopping Courier authentication services authdaemond /var/run/courier/authdaemon/pid.lock: No such file or directory
invoke-rc.d: initscript courier-authdaemon, action "stop" failed.
dpkg: error processing openpanel-mod-postfixcourier (--configure):
subprocess installed post-installation script returned error exit status 1
No apport report written because MaxReports is reached already
dpkg: dependency problems prevent configuration of openpanel-mod-spamassassin:
openpanel-mod-spamassassin depends on openpanel-mod-postfixcourier (>= 1.1); however:
Package openpanel-mod-postfixcourier is not configured yet.
dpkg: error processing openpanel-mod-spamassassin (--configure):
dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of openpanel-suggested:
openpanel-suggested depends on openpanel-mod-postfixcourier; however:
Package openpanel-mod-postfixcourier is not configured yet.
openpanel-suggested depends on openpanel-mod-spamassassin; however:
Package openpanel-mod-spamassassin is not configured yet.
No apport report written because MaxReports is reached already
dpkg: error processing openpanel-suggested (--configure):
dependency problems - leaving unconfigured
No apport report written because MaxReports is reached already
Errors were encountered while processing:
openpanel-mod-postfixcourier
openpanel-mod-spamassassin
openpanel-suggested
E: Sub-process /usr/bin/dpkg returned an error code (1)
History
Updated by Pieter Jansen over 1 year ago
Wheezy -> oneiric!
Updated by Pim van Riezen over 1 year ago
- Status changed from New to Need test
- % Done changed from 0 to 100
Seems debian/postinst parsing is bloody anal and just craps out because a cautionary invoke-rc.d fails. I added a "|| true" to the invoke. Bitches love "|| true".
Updated by joe hx over 1 year ago
I couldn't get past this and after plenty of searching decided to try throwing an ||true in the invoke-rc.d file...maybe this will be more helpful than pim:
- Executes initscript
- note that $ACTION is a space-separated list of actions
- to be attempted in order until one suceeds.
if test x${FORCE} != x || test ${RC} -eq 104; then
if testexec "${INITDPREFIX}${INITSCRIPTID}"; then
RC=102
setechoactions ${ACTION}
while test ! -z "${ACTION}" ; do
getnextaction ${ACTION}
if test ! -z ${echoaction} ; then
printerror executing initscript action \"${saction}\"...
fi"${INITDPREFIX}${INITSCRIPTID}" "${saction}" "$@" && exit 0 ||true
RC=$?if test ! -z "${ACTION}" ; then
printerror action \"${saction}\" failed, trying next action...
fi
done
printerror initscript ${INITSCRIPTID}, action \"${saction}\" failed.
exit ${RC}
fi
exit 102
fi
----find this and add the ||true. it seems to have finally let me install the rest of the openpanel stuff, but I'm still fighting the imap login