Bug#663971: $named dependency in init script and pdns

2012-10-20 Thread Kel Modderman
 Hi insserv maintainers,
 
 there seems to be a problem with apache2's dependency on $named if 
 pdns is installed but not enabled [1]. This does not seem to be a 
 problem with other name servers. 
 
 pdns ships /etc/insserv.conf.d/pdnsd with
 
   $named pdnsd
 
 Should this be fixed in pdnsd by adding the +, like other name 
 service entries in /etc/insserv.conf?

This. When there are many services that can each independently provide
a virtual service, it has been customary to make them optional by prefixing
with '+' as in /etc/insserv.conf

Curious though, how has pdns been disabled in your case?

Thanks, Kel


-- 
To UNSUBSCRIBE, email to debian-apache-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201210201601.30600@otaku42.de



Bug#690232: apache2: Apache2 listens on tcp6 only

2012-10-20 Thread Olaf Zaplinski

Am 20.10.2012 01:09, schrieb Arno Töll:

tags 690232 +moreingo
thanks


On 11.10.2012 14:50, Olaf Zaplinski wrote:

funny is: I disabled IPv6, now everything works as expected.


Frankly, neither Stefan or me have a clear understanding where and how
this would a bug. We're aware of a similar sounding issue recored as PR
52709 upstream [1] but that's fixed in Wheezy already.

[1] https://issues.apache.org/bugzilla/show_bug.cgi?id=52709



I just checked another host that is working fine on IPv6 and IPv4. No 
idea what was wrong on the 1st host. Please close this bug, and sorry 
for the noise.


Olaf


--
To UNSUBSCRIBE, email to debian-apache-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/50824b4b.7090...@zaplinski.de



Bug#690232: marked as done (apache2: Apache2 listens on tcp6 only)

2012-10-20 Thread Debian Bug Tracking System
Your message dated Sat, 20 Oct 2012 15:45:18 +0200
with message-id 5082aaee.8080...@debian.org
and subject line Re: Bug#690232: apache2: Apache2 listens on tcp6 only
has caused the Debian Bug report #690232,
regarding apache2: Apache2 listens on tcp6 only
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 ow...@bugs.debian.org
immediately.)


-- 
690232: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=690232
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: apache2.2-common
Version: 2.2.16-6+squeeze8
Severity: normal



-- Package-specific info:
List of enabled modules from 'apache2 -M':
  alias auth_basic authn_file authz_default authz_groupfile
  authz_host authz_user autoindex cgi deflate dir env mime
  negotiation php5 reqtimeout setenvif status
List of enabled php5 extensions:
  mysql mysqli pdo pdo_mysql suhosin

-- System Information:
Debian Release: 6.0.6
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages apache2 depends on:
ii  apache2-mpm-prefork2.2.16-6+squeeze8 Apache HTTP Server -
traditional n
ii  apache2.2-common   2.2.16-6+squeeze8 Apache HTTP Server common
files

apache2 recommends no packages.

apache2 suggests no packages.

Versions of packages apache2.2-common depends on:
ii  apache2-utils  2.2.16-6+squeeze8 utility programs for
webservers
ii  apache2.2-bin  2.2.16-6+squeeze8 Apache HTTP Server common
binary f
ii  libmagic1  5.04-5+squeeze2   File type determination
library us
ii  lsb-base   3.2-23.2squeeze1  Linux Standard Base 3.2 init
scrip
ii  mime-support   3.48-1MIME files 'mime.types' 
'mailcap
ii  perl   5.10.1-17squeeze3 Larry Wall's Practical
Extraction
ii  procps 1:3.2.8-9squeeze1 /proc file system utilities

-- no debconf information



after restarting apache2, I see:

# netstat -tanp
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address   Foreign Address State 
PID/Program name
tcp0  0 0.0.0.0:22  0.0.0.0:*   LISTEN
1415/sshd
tcp0  0 0.0.0.0:25  0.0.0.0:*   LISTEN
7985/master
tcp0  0 127.0.0.1:3306  0.0.0.0:*   LISTEN
5908/mysqld
tcp0  0 10.52.152.164:2210.52.81.146:49538 
ESTABLISHED 1433/0
tcp0  0 10.52.152.164:2210.52.81.146:50363 
ESTABLISHED 10488/2
tcp0  0 10.52.152.164:2210.52.81.146:49909 
ESTABLISHED 4229/1
tcp6   0  0 :::80   :::*LISTEN
10525/apache2
tcp6   0  0 :::22   :::*LISTEN
1415/sshd

ports.conf is default:
NameVirtualHost *:80
Listen 80


So I did a
echo net.ipv6.conf.all.disable_ipv6=1  /etc/sysctl.d/disableipv6.conf 
reboot with the following result:

# netstat -tanp
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address   Foreign Address State 
PID/Program name
tcp0  0 0.0.0.0:80  0.0.0.0:*   LISTEN
1249/apache2
tcp0  0 0.0.0.0:22  0.0.0.0:*   LISTEN
1521/sshd
tcp0  0 0.0.0.0:25  0.0.0.0:*   LISTEN
1655/master
tcp0  0 127.0.0.1:3306  0.0.0.0:*   LISTEN
1489/mysqld
tcp0 52 10.52.152.164:2210.52.81.146:50385 
ESTABLISHED 1742/0
---End Message---
---BeginMessage---
On 20.10.2012 08:57, Olaf Zaplinski wrote:
 I just checked another host that is working fine on IPv6 and IPv4. No
 idea what was wrong on the 1st host. Please close this bug, and sorry
 for the noise.

Cool, will do and don't worry. :)


-- 
with kind regards,
Arno Töll
IRC: daemonkeeper on Freenode/OFTC
GnuPG Key-ID: 0x9D80F36D



signature.asc
Description: OpenPGP digital signature
---End Message---


Bug#288615: apache2: Issue with language negotiation exceptions

2012-10-20 Thread Jean-Michel Vourgère
tags 288615 + patch
thank you

I could reproduce the problem.
The proposed patch fixes it. :)


signature.asc
Description: This is a digitally signed message part.


Processed: Re: apache2: Issue with language negotiation exceptions

2012-10-20 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 288615 + patch
Bug #288615 [apache2] apache2: Issue with language negotiation exceptions
Added tag(s) patch.
 thank you
Stopping processing here.

Please contact me if you need assistance.
-- 
288615: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=288615
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-apache-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.135077974316966.transcr...@bugs.debian.org



Processed: your mail

2012-10-20 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 found 288615 2.2.22-11
Bug #288615 [apache2] apache2: Issue with language negotiation exceptions
Marked as found in versions apache2/2.2.22-11.

End of message, stopping processing here.

Please contact me if you need assistance.
-- 
288615: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=288615
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-apache-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.135077992118414.transcr...@bugs.debian.org



Processed: your mail

2012-10-20 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 671171 + patch upstream
Bug #671171 [apache2.2-bin] apache2.2: mod_speling offers only permanent 
redirects
Added tag(s) upstream and patch.

End of message, stopping processing here.

Please contact me if you need assistance.
-- 
671171: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=671171
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


--
To UNSUBSCRIBE, email to debian-apache-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.135078119126741.transcr...@bugs.debian.org