Your message dated Sun, 1 Dec 2024 14:41:27 +0300
with message-id <[email protected]>
and subject line Re: postfix fails in /etc/init.d/postfix - options not
understood by daemon
has caused the Debian Bug report #382804,
regarding postfix fails in /etc/init.d/postfix - options not understood by
daemon
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
382804: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=382804
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: postfix
Version: 2.2.10-2
Severity: normal
Tags: patch
after installing a new etch and replacing exim with postfix postfix
does not start because it does not know the options passed in
/etc/init.d/postfix:
quiet-quick-start
quiet-stop
quiet-reload
postfix fails with:
postfix/postfix-script: fatal: usage: postfix start (or stop, \
reload, abort, flush, check, set-permissions, upgrade-configuration)
Patch attached but does not suppress any messages.
Same happens with the unstable version.
Udo
-- System Information:
Debian Release: testing/unstable
APT prefers testing
APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-2-k7
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) (ignored: LC_ALL
set to de_DE.UTF-8)
Versions of packages postfix depends on:
ii adduser 3.96 Add and remove users and groups
ii debconf [debconf-2.0] 1.5.3 Debian configuration management sy
ii dpkg 1.13.21 package maintenance system for Deb
ii libc6 2.3.6-15 GNU C Library: Shared libraries
ii libdb4.3 4.3.29-6 Berkeley v4.3 Database Libraries [
ii libsasl2 2.1.19.dfsg1-0.2 Authentication abstraction library
ii libssl0.9.8 0.9.8b-2 SSL shared libraries
ii lsb-base 3.1-10 Linux Standard Base 3.1 init scrip
ii netbase 4.25 Basic TCP/IP networking system
ii ssl-cert 1.0.13 Simple debconf wrapper for openssl
Versions of packages postfix recommends:
ii kmail [mail-read 4:3.5.2-1+b2 KDE Email client
ii mailx [mail-read 1:8.1.2-0.20050715cvs-1 A simple mail user agent
ii mutt [mail-reade 1.5.12-1 text-based mailreader supporting M
ii resolvconf 1.35 nameserver information handler
-- debconf information:
postfix/master_upgrade_warning:
postfix/db_upgrade_warning: true
* postfix/mailname: mueller.cs-ol.de
postfix/tlsmgr_upgrade_warning:
postfix/dynamicmaps_upgrade_warning:
postfix/recipient_delim: +
* postfix/main_mailer_type: Satellite system
postfix/transport_map_warning:
* postfix/relayhost: smtp.localdomain
postfix/procmail: false
postfix/bad_recipient_delimiter:
* postfix/chattr: false
* postfix/root_address: udo
postfix/rfc1035_violation: false
postfix/mynetworks: 127.0.0.0/8
* postfix/destinations: mueller.cs-ol.de, localhost.localdomain,
localhost.localdomain, localhost
postfix/nqmgr_upgrade_warning:
postfix/not_configured:
postfix/mailbox_limit: 0
postfix/protocols: ipv4
--- etc/init.d/postfix 2006-05-29 18:13:03.000000000 +0200
+++ etc/init.d/postfix.new 2006-08-13 15:55:25.000000000 +0200
@@ -70,7 +70,7 @@
umask $oldumask
fi
- if start-stop-daemon --start --exec ${DAEMON} -- quiet-quick-start;
then
+ if start-stop-daemon --start --exec ${DAEMON} -- start; then
log_end_msg 0
else
log_end_msg 1
@@ -82,7 +82,7 @@
RUNNING=$(running)
log_daemon_msg "Stopping Postfix Mail Transport Agent" postfix
if [ -n "$RUNNING" ]; then
- if ${DAEMON} quiet-stop; then
+ if ${DAEMON} stop; then
log_end_msg 0
else
log_end_msg 1
@@ -99,7 +99,7 @@
force-reload|reload)
log_action_begin_msg "Reloading Postfix configuration"
- if ${DAEMON} quiet-reload; then
+ if ${DAEMON} reload; then
log_action_end_msg 0
else
log_action_end_msg 1
--- End Message ---
--- Begin Message ---
[Replying to (and closing) an old bug report]
On Sun, 13 Aug 2006 16:00:29 +0200 Udo Mueller <[email protected]> wrote:
Package: postfix
Version: 2.2.10-2
Severity: normal
Tags: patch
after installing a new etch and replacing exim with postfix postfix
does not start because it does not know the options passed in
/etc/init.d/postfix:
quiet-quick-start
quiet-stop
quiet-reload
These options has never been understood by standard initscripts.
The standard options are start/stop/restart/status. What you're
listing above are non-standard, so there's no reason they should
be supported. And postfix correctly fails seeing an unsupported
option.
Maybe exim initscript implemented those non-standard options and
it was handy. But postfix does not implement them.
Closing this bug report. Please feel free to reopen it if you
think it is incorrect.
Thanks,
/mjt
--- End Message ---