/etc/inetd.conf conflicts with /etc/init.d/wu-ftpd
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
wu-ftpd (Ubuntu) |
Confirmed
|
Undecided
|
Unassigned |
Bug Description
Binary package hint: wu-ftpd
I just installed wu-ftpd, and had trouble getting it started. Turns out that the problem was this:
The /etc/init.d/wu-ftpd script first checks in /etc/inetd.conf if wu-ftpd is in there. (On my system, it is. I didn't put it there, so I assume it was added when I installed wu-ftpd.) If so, it does nothing. Which seems reasonable, except that I don't have inetd installed. As a result, wu-ftpd is never started.
Work-around: remove the "ftp" line from /etc/inetd.conf, and the init.d script should work correctly.
Permanent fix: in /etc/init.
if [ -f /etc/inetd.conf ] && egrep '^ftp[[
to this:
if [ -f /etc/inetd.conf ] && [ -n `which inetd` ] && egrep '^ftp[[
wu-ftpd (2.6.2-28ubuntu1) gutsy; urgency=low
* Merge from Debian unstable. Remaining Ubuntu changes: Maintainer- Field Spec
- Modify Maintainer value to match Debian-
* debian/init: check (x)inetd presence on startup (LP: #92864)
wu-ftpd (2.6.2-28) unstable; urgency=low
* applied patch to fix output of SIZE command (closes: #433887)
* fixed typo in template (closes: #433665)
* updated debconf translations: pt, de, sv, eu, vi, fr, es, ca
(closes: #433664, #434578, #434686, #434777)
wu-ftpd (2.6.2-27) unstable; urgency=low
* Made the init script LSB-compliant
* Added Spanish debconf translation (closes: #428570)
* Removed DH_COMPAT from debian/rules and replaced with debian/compat
* Changed netbase dependency to depend on update-inetd
* Removed old version migration code from debian/preinst as it's not
required for upgrades from etch (or even sarge)
* Updated some debconf questions to follow style guides
-- Lionel Porcheron <email address hidden> Wed, 01 Aug 2007 00:38:54 +0200