[Bug 780314] [NEW] package samba 2:3.5.8~dfsg-1ubuntu2.1 failed to install/upgrade: le sous-processus script post-installation installé a retourné une erreur de sortie d'état 1

2011-05-10 Thread Totem Rajal
Public bug reported:

Binary package hint: samba

on linux ubuntu 11.04

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: samba 2:3.5.8~dfsg-1ubuntu2.1
ProcVersionSignature: Ubuntu 2.6.32-24.43-generic 2.6.32.15+drm33.5
Uname: Linux 2.6.32-24-generic i686
AptOrdering:
 ubuntu-docs: Install
 samba: Configure
 ubuntu-docs: Configure
Architecture: i386
Date: Tue May 10 07:54:56 2011
ErrorMessage: le sous-processus script post-installation installé a retourné 
une erreur de sortie d'état 1
RelatedPackageVersions:
 nautilus 1:2.32.2.1-0ubuntu13
 gvfs 1.8.0-0ubuntu2
SambaClientRegression: Yes
SourcePackage: samba
Title: package samba 2:3.5.8~dfsg-1ubuntu2.1 failed to install/upgrade: le 
sous-processus script post-installation installé a retourné une erreur de 
sortie d'état 1
UpgradeStatus: Upgraded to natty on 2011-04-30 (9 days ago)

** Affects: samba (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 natty

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in Ubuntu.
https://bugs.launchpad.net/bugs/780314

Title:
  package samba 2:3.5.8~dfsg-1ubuntu2.1 failed to install/upgrade: le
  sous-processus script post-installation installé a retourné une erreur
  de sortie d'état 1

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 780314] Re: package samba 2:3.5.8~dfsg-1ubuntu2.1 failed to install/upgrade: le sous-processus script post-installation installé a retourné une erreur de sortie d'état 1

2011-05-10 Thread Totem Rajal
-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in Ubuntu.
https://bugs.launchpad.net/bugs/780314

Title:
  package samba 2:3.5.8~dfsg-1ubuntu2.1 failed to install/upgrade: le
  sous-processus script post-installation installé a retourné une erreur
  de sortie d'état 1

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 529714] Re: rhythmbox crashed with SIGSEGV in _nss_wins_gethostbyname_r()

2011-05-10 Thread Martin Pitt
** Tags added: verification-done
** Tags removed: verification-needed

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in Ubuntu.
https://bugs.launchpad.net/bugs/529714

Title:
  rhythmbox crashed with SIGSEGV in _nss_wins_gethostbyname_r()

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 780149] Re: net-snmp FTBFS on oneiric (eval: 1: base_compile+= gcc: not found)

2011-05-10 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/net-snmp

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to net-snmp in Ubuntu.
https://bugs.launchpad.net/bugs/780149

Title:
  net-snmp FTBFS on oneiric (eval: 1: base_compile+= gcc: not found)

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 706988] Re: Major Bug in MySQL 5.1.49 up to 5.1.52

2011-05-10 Thread Koopee
Please update the mysql. It could solve this issue too, where adding an
index breaks a query.

Below mysql run describing the situation:
1. Execute query - no results.
2. Remove index
3. Execute query - Correct result found
4. Re-create index
5. Execute query again - no results.


mysql select version();
+---+
| version() |
+---+
| 5.1.49-1ubuntu8.1 |
+---+
1 row in set (0.00 sec)
mysql SELECT `units`.* FROM `units` INNER JOIN `units_users` ON `units`.id = 
`units_users`.unit_id WHERE (`units`.`id` = 72) AND ((`units_users`.user_id = 
22));
Empty set (0.00 sec)

mysql drop index index_units_users_on_unit_id on units_users;
Query OK, 330 rows affected (0.26 sec)
Records: 330  Duplicates: 0  Warnings: 0

mysql SELECT `units`.* FROM `units` INNER JOIN `units_users` ON `units`.id = 
`units_users`.unit_id WHERE (`units`.`id` = 72) AND ((`units_users`.user_id = 
22));
+++---++---+--+---+--+--++-+-+-++--+--+
| id | company_id | name  | address_id | phone | fax  | email | www 
 | valid_to | created_by_user_id | modified_by_user_id | created_at  | 
updated_at  | receipt_number | lock_version | type |
+++---++---+--+---+--+--++-+-+-++--+--+
| 72 | 22 | Company 1 |   NULL |   |  |   |  | NULL 
|   NULL |NULL | 2009-11-03 07:45:55 | 
2010-08-25 20:32:29 |  69760 |21722 | NULL |
+++---++---+--+---+--+--++-+-+-++--+--+
1 row in set (0.00 sec)

mysql create index index_units_users_on_unit_id on units_users (unit_id);
Query OK, 330 rows affected (0.32 sec)
Records: 330  Duplicates: 0  Warnings: 0

mysql SELECT `units`.* FROM `units` INNER JOIN `units_users` ON `units`.id = 
`units_users`.unit_id WHERE (`units`.`id` = 72) AND ((`units_users`.user_id = 
22));
Empty set (0.00 sec)

mysql


** Tags added: query

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-5.1 in Ubuntu.
https://bugs.launchpad.net/bugs/706988

Title:
  Major Bug in MySQL 5.1.49 up to 5.1.52

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 727091] Re: Select on table with two colums cause empty result.

2011-05-10 Thread Koopee
*** This bug is a duplicate of bug 706988 ***
https://bugs.launchpad.net/bugs/706988

** This bug has been marked a duplicate of bug 706988
   Major Bug in MySQL 5.1.49 up to 5.1.52
 * You can subscribe to bug 706988 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/mysql-5.1/+bug/706988/+subscribe

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in Ubuntu.
https://bugs.launchpad.net/bugs/727091

Title:
  Select on table with two colums cause empty result.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 706988] Re: Major Bug in MySQL 5.1.49 up to 5.1.52

2011-05-10 Thread Koopee
Just upgrading from ubuntu 10.04 to 10.10 causes mysql to break.

http://bugs.mysql.com/bug.php?id=57795

** Bug watch added: MySQL Bug System #57795
   http://bugs.mysql.com/bug.php?id=57795

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-5.1 in Ubuntu.
https://bugs.launchpad.net/bugs/706988

Title:
  Major Bug in MySQL 5.1.49 up to 5.1.52

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 712392] Re: qemu-img convert blocks other tasks

2011-05-10 Thread Alvin
It's not good to let this bug expire. LVM snapshots are a severe risk
and an important feature on file servers.

** Changed in: qemu-kvm (Ubuntu)
   Status: Expired = New

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/712392

Title:
  qemu-img convert blocks other tasks

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 777103] ACK of sync request

2011-05-10 Thread Daniel Holbach
ACKed.

** Changed in: groovy (Ubuntu)
   Status: New = Triaged

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to groovy in Ubuntu.
https://bugs.launchpad.net/bugs/777103

Title:
  Sync groovy 1.7.10-2 (main) from debian unstable (main)

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 779391] Re: CVE-2011-1764: format string vulnerability

2011-05-10 Thread Launchpad Bug Tracker
This bug was fixed in the package exim4 - 4.74-1ubuntu1.1

---
exim4 (4.74-1ubuntu1.1) natty-security; urgency=low

  * SECURITY UPDATE: format string vulnerability (LP: #779391)
- debian/patches/85_CVE-2011-1764.patch: patch from upstream
- CVE-2011-1764
 -- Felix Geyer debfx-...@fobos.de   Sun, 08 May 2011 15:31:05 +0200

** Changed in: exim4 (Ubuntu Natty)
   Status: Fix Committed = Fix Released

** Changed in: exim4 (Ubuntu Maverick)
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to exim4 in Ubuntu.
https://bugs.launchpad.net/bugs/779391

Title:
  CVE-2011-1764: format string vulnerability

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 779391] Re: CVE-2011-1764: format string vulnerability

2011-05-10 Thread Launchpad Bug Tracker
This bug was fixed in the package exim4 - 4.72-1ubuntu1.2

---
exim4 (4.72-1ubuntu1.2) maverick-security; urgency=low

  * SECURITY UPDATE: format string vulnerability (LP: #779391)
- debian/patches/85_CVE-2011-1764.patch: patch from upstream
- CVE-2011-1764
 -- Kees Cook k...@ubuntu.com   Mon, 09 May 2011 16:51:44 -0700

** Changed in: exim4 (Ubuntu Lucid)
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to exim4 in Ubuntu.
https://bugs.launchpad.net/bugs/779391

Title:
  CVE-2011-1764: format string vulnerability

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 779391] Re: CVE-2011-1764: format string vulnerability

2011-05-10 Thread Launchpad Bug Tracker
This bug was fixed in the package exim4 - 4.71-3ubuntu1.2

---
exim4 (4.71-3ubuntu1.2) lucid-security; urgency=low

  * SECURITY UPDATE: format string vulnerability (LP: #779391)
- debian/patches/85_CVE-2011-1764.patch: patch from upstream
- CVE-2011-1764
 -- Felix Geyer debfx-...@fobos.de   Sun, 08 May 2011 15:31:05 +0200

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to exim4 in Ubuntu.
https://bugs.launchpad.net/bugs/779391

Title:
  CVE-2011-1764: format string vulnerability

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 779391] Re: CVE-2011-1764: format string vulnerability

2011-05-10 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/maverick-security/exim4

** Branch linked: lp:ubuntu/natty-security/exim4

** Branch linked: lp:ubuntu/lucid-security/exim4

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to exim4 in Ubuntu.
https://bugs.launchpad.net/bugs/779391

Title:
  CVE-2011-1764: format string vulnerability

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 777103] Sync groovy 1.7.10-2 (main) from debian unstable (main)

2011-05-10 Thread Colin Watson
2011-05-10 09:36:57 INFO  - groovy_1.7.10.orig.tar.gz: downloading from 
http://ftp.debian.org/debian/
[Updating] groovy (1.7.4-1ubuntu1 [Ubuntu]  1.7.10-2 [Debian])
 * Trying to add groovy...
2011-05-10 09:36:58 INFO  - groovy_1.7.10-2.dsc: downloading from 
http://ftp.debian.org/debian/
2011-05-10 09:36:58 INFO  - groovy_1.7.10-2.debian.tar.gz: downloading 
from http://ftp.debian.org/debian/
I: groovy [main] - groovy_1.7.4-1ubuntu1 [main].
I: groovy [main] - groovy-doc_1.7.4-1ubuntu1 [main].


** Changed in: groovy (Ubuntu)
   Status: Triaged = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to groovy in Ubuntu.
https://bugs.launchpad.net/bugs/777103

Title:
  Sync groovy 1.7.10-2 (main) from debian unstable (main)

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 345485] Re: libvirt does not remove interfaces on stop

2011-05-10 Thread Olivier Berger
Has anyone pushed this upstream ?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libvirt in Ubuntu.
https://bugs.launchpad.net/bugs/345485

Title:
  libvirt does not remove interfaces on stop

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 747090] Re: wrong return address sometimes pushed for INT in kvm (not qemu)

2011-05-10 Thread Brad Figg
** Tags added: verification-needed-natty

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/747090

Title:
  wrong return address sometimes pushed for INT in kvm (not qemu)

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 709188] Re: Samba in Lucid upgrade killed Envelope Feeder on HP LJ4000 printer

2011-05-10 Thread Michael Lueck
Aaakkk!!! @Till Kamppeter I updated this report a couple of times.
Resetting the Samba ticket back to new as I feel the addl testing done
confirms it to be a Samba bug and not CUPS.

** Changed in: samba (Ubuntu)
   Status: Expired = New

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in Ubuntu.
https://bugs.launchpad.net/bugs/709188

Title:
  Samba in Lucid upgrade killed Envelope Feeder on HP LJ4000 printer

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 551130] Re: [SRU] infinite loop in /etc/init/mysql.conf if mysqld is not running.

2011-05-10 Thread MarkieB
incidentally that's mysql-server-5.1_5.1.49-1ubuntu8.1_amd64.deb ; the
file that I've uploaded as usr.sbin.mysqld.dpkg-new is the package
maintainer's version so should be unedited

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in Ubuntu.
https://bugs.launchpad.net/bugs/551130

Title:
  [SRU] infinite loop in /etc/init/mysql.conf if mysqld is not running.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 780445] [NEW] package mysql-server-5.1 5.1.54-1ubuntu4 failed to install/upgrade: подпроцесс установлен сценарий post-installation возвратил код ошибки 1

2011-05-10 Thread dakhrapov
Public bug reported:

xz

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: mysql-server-5.1 5.1.54-1ubuntu4
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic i686
AptOrdering:
 flashplugin-installer: Purge
 mysql-server-5.1: Configure
 mysql-server: Configure
Architecture: i386
Date: Tue May 10 15:34:55 2011
ErrorMessage: подпроцесс установлен сценарий post-installation возвратил код 
ошибки 1
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Beta i386 (20110413)
SourcePackage: mysql-5.1
Title: package mysql-server-5.1 5.1.54-1ubuntu4 failed to install/upgrade: 
подпроцесс установлен сценарий post-installation возвратил код ошибки 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: mysql-5.1 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 natty

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-5.1 in Ubuntu.
https://bugs.launchpad.net/bugs/780445

Title:
  package mysql-server-5.1 5.1.54-1ubuntu4 failed to install/upgrade:
  подпроцесс установлен сценарий post-installation возвратил код ошибки
  1

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 780445] Re: package mysql-server-5.1 5.1.54-1ubuntu4 failed to install/upgrade: подпроцесс установлен сценарий post-installation возвратил код ошибки 1

2011-05-10 Thread dakhrapov
-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-5.1 in Ubuntu.
https://bugs.launchpad.net/bugs/780445

Title:
  package mysql-server-5.1 5.1.54-1ubuntu4 failed to install/upgrade:
  подпроцесс установлен сценарий post-installation возвратил код ошибки
  1

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 666383] Re: package mysql-server-5.1 5.1.41-3ubuntu12.6 failed to install/upgrade: [SRU] infinite loop in /etc/init/mysql.conf if mysqld is not running

2011-05-10 Thread MarkieB
Hi David,

it looks as though possibly there's some error in the 'magic' of the
package maintainer's version of

/etc/apparmor.d/usr.sbin.mysqld

that is unresolved as of mysql-server-5.1_5.1.49-1ubuntu8.1_amd64.deb

so try to substitute the 'original version' as in attachment

** Attachment added: usr.sbin.mysqld
   
https://bugs.launchpad.net/ubuntu/+source/mysql-dfsg-5.1/+bug/666383/+attachment/2122551/+files/usr.sbin.mysqld

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in Ubuntu.
https://bugs.launchpad.net/bugs/666383

Title:
  package mysql-server-5.1 5.1.41-3ubuntu12.6 failed to install/upgrade:
  [SRU] infinite loop in /etc/init/mysql.conf if mysqld is not running

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 709188] Re: Samba in Lucid upgrade killed Envelope Feeder on HP LJ4000 printer

2011-05-10 Thread Till Kamppeter
Sorry, as I saw your last answer, I did not see that the bug was still
on Incomplete which causes it to expire after 60 days. Perhaps you
should already set back the bug state from Incompolete to New when
you answer a developer's question in any bug report.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in Ubuntu.
https://bugs.launchpad.net/bugs/709188

Title:
  Samba in Lucid upgrade killed Envelope Feeder on HP LJ4000 printer

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 709188] Re: Samba in Lucid upgrade killed Envelope Feeder on HP LJ4000 printer

2011-05-10 Thread Michael Lueck
Suggestion noted how to handle responding to a developer question. I had
no idea that Incomplete had a timer ticking.

BTW: Is there a best place to install Ubuntu Lucid (10.04) packages of
Samba higher than the stable release maintained for Lucid? Perhaps this
is fixed by a higher release of Samba.

In the past when I started with Samba I was using Debian Sarge. I
installed Samba from the official Samba repo. However, I have only used
official Ubuntu packages since switching to Ubuntu. Thus since switching
to Ubuntu I sort of feel out of the loop with what developments Samba
has brewing.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in Ubuntu.
https://bugs.launchpad.net/bugs/709188

Title:
  Samba in Lucid upgrade killed Envelope Feeder on HP LJ4000 printer

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 747090] Re: wrong return address sometimes pushed for INT in kvm (not qemu)

2011-05-10 Thread Brad Figg
This bug is awaiting verification that the kernel in -proposed solves
the problem. Please test the kernel and update this bug with the
results. If the problem is solved, change the tag 'verification-needed'
to 'verification-done'.

If verification is not done by one week from today, this fix will be
dropped from the source code, and this bug will be closed.

See https://wiki.ubuntu.com/Testing/EnableProposed for documentation how
to enable and use -proposed. Thank you!

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/747090

Title:
  wrong return address sometimes pushed for INT in kvm (not qemu)

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 712392] Re: qemu-img convert blocks other tasks

2011-05-10 Thread Serge Hallyn
Does this:

kvm D  0 9632 1 0x
 8801a4269ca8 0086 00015bc0 00015bc0
 8802004fdf38 8801a4269fd8 00015bc0 8802004fdb80
 00015bc0 8801a4269fd8 00015bc0 8802004fdf38
Call Trace:
 [815596b7] __mutex_lock_slowpath+0x107/0x190
 [815590b3] mutex_lock+0x23/0x50
 [810f5899] generic_file_aio_write+0x59/0xe0
 [811d7879] ext4_file_write+0x39/0xb0
 [81143a8a] do_sync_write+0xfa/0x140
 [81084380] ? autoremove_wake_function+0x0/0x40
 [81252316] ? security_file_permission+0x16/0x20
 [81143d88] vfs_write+0xb8/0x1a0
 [81144722] sys_pwrite64+0x82/0xa0
 [810121b2] system_call_fastpath+0x16/0x1b
kdmflush D 0002 0 396 2 0x
 88022eeb3d10 0046 00015bc0 00015bc0
 88022f489a98 88022eeb3fd8 00015bc0 88022f4896e0
 00015bc0 88022eeb3fd8 00015bc0 88022f489a98

show up in the guest, or the host?  (I'd assume and hope the guest).

Does this happen only with LVM volumes?

For LVM, does it help if you create a temporary readonly snapshot of the
volume you want to copy, use qemu-img on the snapshot, and then delete
the snapshot?  Does that allow the VM to continue running with the
original volume with no errors?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/712392

Title:
  qemu-img convert blocks other tasks

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 712392] Re: qemu-img convert blocks other tasks

2011-05-10 Thread Alvin
Unfortunately, this shows up in both host and guests.

I haven't tried to use qemu-img on a snapshot, but I will. I fear it
will not make much difference. Just having snapshots (without accessing
them) is enough to bring the system down on moments with heavy I/O.

Sometime this week, I will warn the users of their impending doom and
try out whether it makes a difference.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/712392

Title:
  qemu-img convert blocks other tasks

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 759940] Re: webdav modifies uri and path_info attributes

2011-05-10 Thread Brian Wasserman
Is there anything more info you need from me?  Can this patch be
included in Lucid backports?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mod-wsgi in Ubuntu.
https://bugs.launchpad.net/bugs/759940

Title:
  webdav modifies uri and path_info attributes

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 551130] Re: [SRU] infinite loop in /etc/init/mysql.conf if mysqld is not running.

2011-05-10 Thread a7x
@MarkieB:  Please file a new bug report for the regression; this one is
closed.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.1 in Ubuntu.
https://bugs.launchpad.net/bugs/551130

Title:
  [SRU] infinite loop in /etc/init/mysql.conf if mysqld is not running.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


Re: [Bug 712392] Re: qemu-img convert blocks other tasks

2011-05-10 Thread Serge Hallyn
Quoting Alvin (i...@alvin.be):
 Unfortunately, this shows up in both host and guests.
 
 I haven't tried to use qemu-img on a snapshot, but I will. I fear it
 will not make much difference. Just having snapshots (without accessing
 them) is enough to bring the system down on moments with heavy I/O.
 
 Sometime this week, I will warn the users of their impending doom and
 try out whether it makes a difference.

I assume you have very fast underlying storage and that's the trigger.
Rather than running qemu-img under 'nice', I wonder whether you would
be better off running qemu-img in a cgroup with tighter controls over
its blkio.  I've not experimented with this myself, but
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=blob;f=Documentation/cgroups/blkio-controller.txt;h=465351d4cf853e8a308c9c84abef789b3dcfa42c;hb=HEAD
should give some good info.

I also must point out that the only storage failures I've seen myself
(roughly a year ago) were due to ext4 itself.  I since switched to
xfs for all root and data partitions and have not seen the like since.
Unfortunately that's likely not a viable option for you as you have
users already depending on the system (plus 2.6.38 is rumored to bring
its own xfs instabilities, though I've not seen those here).  However
if it were possible, I'd highly recommending testing with xfs.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/712392

Title:
  qemu-img convert blocks other tasks

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 677378] Re: TypeError: deploy() takes exactly 1 argument (2 given)

2011-05-10 Thread tanktarta
This patch fixes the bug for me.  It also adds some missing arguments, I
need to be able to set memory amount (-m), and that was lost too.

** Patch added: Patch for vmbuilder virtualbox plugin
   
https://bugs.launchpad.net/vmbuilder/+bug/677378/+attachment/2122983/+files/vboxvmb.patch

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vm-builder in Ubuntu.
https://bugs.launchpad.net/bugs/677378

Title:
  TypeError: deploy() takes exactly 1 argument (2 given)

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 780657] [NEW] FreeBSD Hangs on Boot

2011-05-10 Thread Falk Nisius
Public bug reported:

Binary package hint: qemu-kvm

On 11.04 Natty, with the Kernel 2.6.38.8-42-server, with kvm 0.14 on an
intel i970 hangs FreeBSD on Boot, like described in

http://www.mail-archive.com/kvm@vger.kernel.org/msg50722.html

and following mails. The Solution in the kvm.git seams to be working.
The issue is not on 10.10 with the 2.6.35-28 at the same machine.
is it possible to update the package with a fixed Version from git ?

Thanks
Falk

** Affects: qemu-kvm (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/780657

Title:
  FreeBSD Hangs on Boot

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 677378] Re: TypeError: deploy() takes exactly 1 argument (2 given)

2011-05-10 Thread Brian Murray
** Tags added: patch

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vm-builder in Ubuntu.
https://bugs.launchpad.net/bugs/677378

Title:
  TypeError: deploy() takes exactly 1 argument (2 given)

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 780657] Re: FreeBSD Hangs on Boot

2011-05-10 Thread Serge Hallyn
Thanks for taking the time to submit this bug and helping to make Ubuntu
better.

I'm marking this confirmed based on the mailing list conversations.
However as the fix appears to be in the kernel, I'm marking the qemu-kvm
bug invalid.

If you can verify that one single commit (say
09493165180e69a1dcdb44e049015e31c6de57e2) in the kvm.git tree fixed the
bug, then we could try and cherrypick that into our kernel trees.
However, we definately can't just take the kvm.git tree as our kernel
tree.

It looks likely that the email thread you pointed to will result in the
correct fixed being pushed to Linus' tree pretty quickly, at which point
it will be pulled into our oneiric tree.  At that point we can also
cherrypick the fix into the natty tree.

** Also affects: linux (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: qemu-kvm (Ubuntu)
   Status: New = Invalid

** Changed in: linux (Ubuntu)
   Status: New = Confirmed

** Changed in: linux (Ubuntu)
   Importance: Undecided = Medium

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/780657

Title:
  FreeBSD Hangs on Boot

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 345485] Re: libvirt does not remove interfaces on stop

2011-05-10 Thread Serge Hallyn
There is no agreed upon fix to push upstream.  Near as I can tell, the
consensus is in fact that libvirt is doing the right thing.  That VMs
can continue running when you stop or restart libvirt-bin, and therefore
it would be wrong for libvirt to shut down its networking.

In which case I'd ask why this isn't marked 'Invalid' or 'Opinion'.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libvirt in Ubuntu.
https://bugs.launchpad.net/bugs/345485

Title:
  libvirt does not remove interfaces on stop

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 747090] Re: wrong return address sometimes pushed for INT in kvm (not qemu)

2011-05-10 Thread Serge Hallyn
I no longer have the original natty-desktop-i386.iso, and the current
one appears to have moved some of the breakpoints.

So I instead tested using this bug's dup, 771227.  virsh save/restore
are working with this proposed kernel.   That should verify this bug, I
don't know if cjwatson wants to give it another go or not.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/747090

Title:
  wrong return address sometimes pushed for INT in kvm (not qemu)

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 747090] Re: wrong return address sometimes pushed for INT in kvm (not qemu)

2011-05-10 Thread Serge Hallyn
Also, with this kernel I do get translations when I choose 'Nederlands'
as my language from the boot cd.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/747090

Title:
  wrong return address sometimes pushed for INT in kvm (not qemu)

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 780740] [NEW] package smbclient 2:3.5.8~dfsg-1ubuntu2 failed to install/upgrade: lectura insuficiente en buffer_copy para error en dpkg-deb durante `./usr/bin/smbclient'

2011-05-10 Thread lara hurtado jose
Public bug reported:

Binary package hint: samba

el error ocurrio mientras actualizaba

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: smbclient 2:3.5.8~dfsg-1ubuntu2
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic i686
AptOrdering:
 smbclient: Install
 smbclient: Configure
Architecture: i386
Date: Tue May 10 15:54:45 2011
ErrorMessage: lectura insuficiente en buffer_copy para error en dpkg-deb 
durante `./usr/bin/smbclient'
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
NmbdLog:
 
SambaServerRegression: No
SmbConfIncluded: Yes
SmbLog:
 
SourcePackage: samba
Title: package smbclient 2:3.5.8~dfsg-1ubuntu2 failed to install/upgrade: 
lectura insuficiente en buffer_copy para error en dpkg-deb durante 
`./usr/bin/smbclient'
UpgradeStatus: No upgrade log present (probably fresh install)
WindowsFailedConnect: Yes

** Affects: samba (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 natty

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in Ubuntu.
https://bugs.launchpad.net/bugs/780740

Title:
  package smbclient 2:3.5.8~dfsg-1ubuntu2 failed to install/upgrade:
  lectura insuficiente en buffer_copy para error en dpkg-deb durante
  `./usr/bin/smbclient'

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 780740] Re: package smbclient 2:3.5.8~dfsg-1ubuntu2 failed to install/upgrade: lectura insuficiente en buffer_copy para error en dpkg-deb durante `./usr/bin/smbclient'

2011-05-10 Thread lara hurtado jose
-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in Ubuntu.
https://bugs.launchpad.net/bugs/780740

Title:
  package smbclient 2:3.5.8~dfsg-1ubuntu2 failed to install/upgrade:
  lectura insuficiente en buffer_copy para error en dpkg-deb durante
  `./usr/bin/smbclient'

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


Re: [Bug 779512] Re: nut-2.6.0-1ubuntu3 behavior regression

2011-05-10 Thread Arnaud Quette
Hi Matt,

2011/5/10 Mr. Muskrat 779...@bugs.launchpad.net

 Arnaud,
 Here is what you have asked for.

 Matt


 •[x4linux:~] mmusgrove $ sudo service nut stop
 [sudo] password for mmusgrove:
  * Stopping Network UPS Tools

  [ OK ]
 •[x4linux:~] mmusgrove $ export USB_DEBUG=3
 •[x4linux:~] mmusgrove $ sudo /lib/nut/usbhid-ups - -a cyberpower


can you please try again with:
$ sudo /lib/nut/usbhid-ups -u root - -a cyberpower

I was thinking about the report size issue, but you're there hitting a
permissions one...

cheers,
Arnaud
-- 
Linux / Unix Expert RD - Eaton - http://powerquality.eaton.com
Network UPS Tools (NUT) Project Leader - http://www.networkupstools.org/
Debian Developer - http://www.debian.org
Free Software Developer - http://arnaud.quette.free.fr/

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nut in Ubuntu.
https://bugs.launchpad.net/bugs/779512

Title:
  nut-2.6.0-1ubuntu3 behavior regression

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 750786] Re: nmbd job fails to start on boot

2011-05-10 Thread Tommaso Cucinotta
Hi,

a part of this problem is still there in 11.04, with samba, just
upgraded from proposed-updates (2:3.5.8~dsfg-1ubuntu2.2), despite the
log reports

* debian/samba.smbd.upstart: Do not attempt to start smbd until network
device is up, previously smbd was starting too early and often failing. 
(LP: #771305)

I'm experimenting it in this flavour: samba seems to be working, as
I'm seeing a shared folder, but _printers only_ are not shared. As
usual, a manual restart (sudo service smbd restart) fixes the issue (and
the printer magically shows up in the WinVista client), but on reboot
it's always the same: I can see the folder shares, not the printer.

Configuration of smbd.conf and nmbd.conf is all default, I also tried
the modification of cipher2 (remove the and net-device-up !loopback
from nmbd.conf) without success. Also, I tried to add a and started
nmbd to smbd.conf, as I spotted from the thread that the problem
might be due to smbd and nmbd booting up concurrently, again without
success.

Something very strange I have in /var/log/boot.log:

  Rather than invoking init scripts through /etc/init.d, use the service(8)
  utility, e.g. service S20smbd start

  Since the script you are attempting to invoke has been converted to an
  Upstart job, you may also use the start(8) utility, e.g. start S20smbd
  start: Unknown job: S20smbd

As you can see, it seems smbd's name is being actually mistaken as
S20smbd, i.e., the rc.d link. However, I double-checked the rc.d
links, and I can't see anything irregular:

$ ls -l /etc/rc*/*smb*
lrwxrwxrwx 1 root root 14 2011-05-03 13:08 /etc/rc2.d/S20smbd - ../init.d/smbd
lrwxrwxrwx 1 root root 14 2011-05-03 13:08 /etc/rc3.d/S20smbd - ../init.d/smbd
lrwxrwxrwx 1 root root 14 2011-05-03 13:08 /etc/rc4.d/S20smbd - ../init.d/smbd
lrwxrwxrwx 1 root root 14 2011-05-03 13:08 /etc/rc5.d/S20smbd - ../init.d/smbd

and the smbd.conf is there in /etc/init/smbd.conf.

Now I'm going to try this samba4.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in Ubuntu.
https://bugs.launchpad.net/bugs/750786

Title:
  nmbd job fails to start on boot

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 776936] Re: Running KVM guest causes kernel panic on host

2011-05-10 Thread Serge Hallyn
Can you append whatever script you use to set up the iptables rules, so
I can as closely as possible emulate?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/776936

Title:
  Running KVM guest causes kernel panic on host

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


Re: [Bug 776936] Re: Running KVM guest causes kernel panic on host

2011-05-10 Thread SergeiFranco
Hi, here is the iptables-save output:


*filter
:INPUT DROP [992:148145]
:FORWARD ACCEPT [24:1496]
:OUTPUT ACCEPT [215528:64537610]
-A INPUT -i lo -j ACCEPT
-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
-A INPUT -s 192.168.1.0/24 -j ACCEPT
-A INPUT -p tcp -m tcp --dport 22 -m state --state NEW -m limit --limit
1/min -j ACCEPT
-A INPUT -p tcp -m tcp --dport 22 -m state --state NEW -m limit --limit
1/min -j LOG --log-prefix rate-limited SSH: 
-A INPUT -p tcp -m tcp --dport 22 -m state --state NEW -j REJECT
--reject-with icmp-port-unreachable
-A INPUT ! -s 192.168.1.0/24 -p udp -m udp --dport 53 -j DROP
-A FORWARD -i eth1 -o tun0 -j ACCEPT
-A FORWARD -i br0 -o tun0 -j ACCEPT
-A FORWARD -i eth1 -s 192.168.1.0/24 -m conntrack --ctstate NEW -j ACCEPT
-A FORWARD -i br0 -s 192.168.1.0/24 -m conntrack --ctstate NEW -j ACCEPT
-A FORWARD -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
COMMIT
*nat
:PREROUTING ACCEPT [1920:290675]
:POSTROUTING ACCEPT [16622:1247968]
:OUTPUT ACCEPT [16618:1247716]
-A POSTROUTING -j MASQUERADE
COMMIT
*mangle
:PREROUTING ACCEPT [171074:67106601]
:INPUT ACCEPT [169741:66910030]
:FORWARD ACCEPT [24:1496]
:OUTPUT ACCEPT [215528:64537610]
:POSTROUTING ACCEPT [215565:64541384]
COMMIT


On 11 May 2011 10:29, Serge Hallyn 776...@bugs.launchpad.net wrote:

 Can you append whatever script you use to set up the iptables rules, so
 I can as closely as possible emulate?

 --
 You received this bug notification because you are a direct subscriber
 of the bug.
 https://bugs.launchpad.net/bugs/776936

 Title:
  Running KVM guest causes kernel panic on host

 Status in “linux” package in Ubuntu:
  New
 Status in “qemu-kvm” package in Ubuntu:
  New

 Bug description:
  Binary package hint: qemu-kvm

  as per http://ubuntuforums.org/showthread.php?p=10766552#post10766552

  Host machine Ubuntu Natty server 2.6.38-8-generic i686
  Guest machine Ubuntu Natty server 2.6.38-8-generic i686

  Panic occurs in range of minutes to hours of uptime. It is load
  independent.

 To unsubscribe from this bug, go to:
 https://bugs.launchpad.net/ubuntu/+source/linux/+bug/776936/+subscribe


-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu-kvm in Ubuntu.
https://bugs.launchpad.net/bugs/776936

Title:
  Running KVM guest causes kernel panic on host

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 780820] [NEW] kadmin: IPv6 support binds IPv4 socket leading to EAFNOSUPPORT.

2011-05-10 Thread Mike Mestnik
Public bug reported:

Package: krb5-user
Version: 1.8.3+dfsg-4
Severity: important
File: /usr/bin/kadmin

Here is a small bit of strace output:
socket(PF_INET, SOCK_STREAM, IPPROTO_TCP) = 4

bind(4, {sa_family=AF_INET, sin_port=htons(775),
sin_addr=inet_addr(0.0.0.0)}, 16) = 0

connect(4, {sa_family=AF_INET6, sin6_port=htons(749),
inet_pton(AF_INET6, ::, sin6_addr), sin6_flowinfo=0,
sin6_scope_id=0}, 16) = -1 EAFNOSUPPORT (Address family not supported
by protocol)

Obviously the bind needs to be made IPv6 aware.  I hope this is self
explanitory, the initial connection to the admin server falis as a
result and kadmin exits.  Also the addres in the connect seams wrong.
This is run on localhost and the '-s 127.0.0.1' option is ignored.

-- System Information:
Debian Release: 6.0.1
  APT prefers stable
  APT policy: (900, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.35.4-rscloud (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages krb5-user depends on:
ii  krb5-config 2.2  Configuration files for Kerberos V
ii  libc6   2.11.2-10Embedded GNU C Library: Shared lib
ii  libcomerr2  1.41.12-2common error description library
ii  libgssapi-krb5-21.8.3+dfsg-4 MIT Kerberos runtime libraries - k
ii  libgssrpc4  1.8.3+dfsg-4 MIT Kerberos runtime libraries - G
ii  libk5crypto31.8.3+dfsg-4 MIT Kerberos runtime libraries - C
ii  libkadm5clnt-mit7   1.8.3+dfsg-4 MIT Kerberos runtime libraries - A
ii  libkeyutils11.4-1Linux Key Management Utilities (li
ii  libkrb5-3   1.8.3+dfsg-4 MIT Kerberos runtime libraries
ii  libkrb5support0 1.8.3+dfsg-4 MIT Kerberos runtime libraries - S
ii  libss2  1.41.12-2command-line interface parsing lib

krb5-user recommends no packages.

krb5-user suggests no packages.

-- no debconf information

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: krb5-user 1.8.1+dfsg-5ubuntu0.7 [modified: usr/bin/kadmin 
usr/bin/kdestroy usr/bin/kinit usr/bin/klist usr/bin/kpasswd usr/bin/ksu 
usr/bin/ktutil usr/bin/kvno]
Uname: Linux 2.6.39-020639rc1-generic i686
Architecture: i386
Date: Tue May 10 19:27:38 2011
ProcEnviron:
 LANGUAGE=C:en
 PATH=(custom, no user)
 LANG=C
 SHELL=/bin/bash
SourcePackage: krb5

** Affects: krb5 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 maverick

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to krb5 in Ubuntu.
https://bugs.launchpad.net/bugs/780820

Title:
  kadmin: IPv6 support binds IPv4 socket leading to EAFNOSUPPORT.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 780820] Re: kadmin: IPv6 support binds IPv4 socket leading to EAFNOSUPPORT.

2011-05-10 Thread Mike Mestnik
** Bug watch added: Debian Bug tracker #624710
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=624710

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to krb5 in Ubuntu.
https://bugs.launchpad.net/bugs/780820

Title:
  kadmin: IPv6 support binds IPv4 socket leading to EAFNOSUPPORT.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 780820] Re: kadmin: IPv6 support binds IPv4 socket leading to EAFNOSUPPORT.

2011-05-10 Thread Mike Mestnik
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=624710

Version 1.9 adds IPv6 support for kadmind and kadmin.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to krb5 in Ubuntu.
https://bugs.launchpad.net/bugs/780820

Title:
  kadmin: IPv6 support binds IPv4 socket leading to EAFNOSUPPORT.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 780826] [NEW] package libmysqlclient16 5.1.49-1ubuntu8.1 [modified: usr/lib/libmysqlclient.so.16.0.0 usr/lib/libmysqlclient_r.so.16.0.0] failed to install/upgrade: trying to overwrite '/usr/lib/l

2011-05-10 Thread Derekp62
Public bug reported:

It seems Mysql-client-5.1 and some other package wanted to use there own
copy of libmysqlclient.16.0.0?

ProblemType: Package
DistroRelease: Ubuntu 11.04
Package: libmysqlclient16 5.1.49-1ubuntu8.1 [modified: 
usr/lib/libmysqlclient.so.16.0.0 usr/lib/libmysqlclient_r.so.16.0.0]
ProcVersionSignature: Ubuntu 2.6.38-9.43-generic 2.6.38.4
Uname: Linux 2.6.38-9-generic i686
Architecture: i386
Date: Tue May 10 17:57:42 2011
ErrorMessage: trying to overwrite '/usr/lib/libmysqlclient.so.16.0.0', which is 
also in package mysql-shared-compat 5.1.47-1.rhel5
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
SourcePackage: mysql-5.1
Title: package libmysqlclient16 5.1.49-1ubuntu8.1 [modified: 
usr/lib/libmysqlclient.so.16.0.0 usr/lib/libmysqlclient_r.so.16.0.0] failed to 
install/upgrade: trying to overwrite '/usr/lib/libmysqlclient.so.16.0.0', which 
is also in package mysql-shared-compat 5.1.47-1.rhel5
UpgradeStatus: Upgraded to natty on 2011-05-04 (6 days ago)

** Affects: mysql-5.1 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 natty

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-5.1 in Ubuntu.
https://bugs.launchpad.net/bugs/780826

Title:
  package libmysqlclient16 5.1.49-1ubuntu8.1 [modified:
  usr/lib/libmysqlclient.so.16.0.0 usr/lib/libmysqlclient_r.so.16.0.0]
  failed to install/upgrade: trying to overwrite
  '/usr/lib/libmysqlclient.so.16.0.0', which is also in package mysql-
  shared-compat 5.1.47-1.rhel5

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 780826] Re: package libmysqlclient16 5.1.49-1ubuntu8.1 [modified: usr/lib/libmysqlclient.so.16.0.0 usr/lib/libmysqlclient_r.so.16.0.0] failed to install/upgrade: trying to overwrite '/usr/lib/lib

2011-05-10 Thread Derekp62
-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-5.1 in Ubuntu.
https://bugs.launchpad.net/bugs/780826

Title:
  package libmysqlclient16 5.1.49-1ubuntu8.1 [modified:
  usr/lib/libmysqlclient.so.16.0.0 usr/lib/libmysqlclient_r.so.16.0.0]
  failed to install/upgrade: trying to overwrite
  '/usr/lib/libmysqlclient.so.16.0.0', which is also in package mysql-
  shared-compat 5.1.47-1.rhel5

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 779512] Re: nut-2.6.0-1ubuntu3 behavior regression

2011-05-10 Thread Mr. Muskrat
Arnaud,
I hope that I captured enough of the information for you.

Matt


** Attachment added: usbhid-ups.txt
   
https://bugs.launchpad.net/ubuntu/+source/nut/+bug/779512/+attachment/2123594/+files/usbhid-ups.txt

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nut in Ubuntu.
https://bugs.launchpad.net/bugs/779512

Title:
  nut-2.6.0-1ubuntu3 behavior regression

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 780886] [NEW] package samba 2:3.4.7~dfsg-1ubuntu3.5 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')

2011-05-10 Thread xvader
Public bug reported:

Binary package hint: samba

i tried to update my system, but this error encountered followed with
some other package errors too. and now, my system is completely
destroyed! this never ever happened before!

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: samba 2:3.4.7~dfsg-1ubuntu3.5
ProcVersionSignature: Ubuntu 2.6.32-31.60-generic 2.6.32.32+drm33.14
Uname: Linux 2.6.32-31-generic i686
Architecture: i386
BothFailedConnect: Yes
Date: Wed May 11 11:14:35 2011
ErrorMessage: ErrorMessage: package samba is not ready for configuration  
cannot configure (current status `half-installed')
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100429)
SambaServerRegression: Yes
SourcePackage: samba
Title: package samba 2:3.4.7~dfsg-1ubuntu3.5 failed to install/upgrade: 
ErrorMessage: package samba is not ready for configuration  cannot configure 
(current status `half-installed')

** Affects: samba (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in Ubuntu.
https://bugs.launchpad.net/bugs/780886

Title:
  package samba 2:3.4.7~dfsg-1ubuntu3.5 failed to install/upgrade:
  ErrorMessage: package samba is not ready for configuration  cannot
  configure (current status `half-installed')

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 780886] Re: package samba 2:3.4.7~dfsg-1ubuntu3.5 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')

2011-05-10 Thread xvader
-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in Ubuntu.
https://bugs.launchpad.net/bugs/780886

Title:
  package samba 2:3.4.7~dfsg-1ubuntu3.5 failed to install/upgrade:
  ErrorMessage: package samba is not ready for configuration  cannot
  configure (current status `half-installed')

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 780901] [NEW] package dhcp3-client 3.1.3-2ubuntu3.2 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script killed by signal (Segmentation fault)

2011-05-10 Thread xvader
Public bug reported:

i tried to update my system, but this error encountered followed with
some other package errors too. and now, my system is completely
destroyed! this never ever happened before!

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: dhcp3-client 3.1.3-2ubuntu3.2
ProcVersionSignature: Ubuntu 2.6.32-31.60-generic 2.6.32.32+drm33.14
Uname: Linux 2.6.32-31-generic i686
Architecture: i386
Date: Wed May 11 11:14:41 2011
DhclientLeases:
 
ErrorMessage: ErrorMessage: subprocess installed post-installation script 
killed by signal (Segmentation fault)
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100429)
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-31-generic 
root=UUID=f3ea9cb3-2306-41d5-84e9-ff1b4ef8e0ba ro quiet splash
SourcePackage: dhcp3
Title: package dhcp3-client 3.1.3-2ubuntu3.2 failed to install/upgrade: 
ErrorMessage: subprocess installed post-installation script killed by signal 
(Segmentation fault)

** Affects: dhcp3 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dhcp3 in Ubuntu.
https://bugs.launchpad.net/bugs/780901

Title:
  package dhcp3-client 3.1.3-2ubuntu3.2 failed to install/upgrade:
  ErrorMessage: subprocess installed post-installation script killed by
  signal (Segmentation fault)

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 780901] Re: package dhcp3-client 3.1.3-2ubuntu3.2 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script killed by signal (Segmentation fault)

2011-05-10 Thread xvader
-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dhcp3 in Ubuntu.
https://bugs.launchpad.net/bugs/780901

Title:
  package dhcp3-client 3.1.3-2ubuntu3.2 failed to install/upgrade:
  ErrorMessage: subprocess installed post-installation script killed by
  signal (Segmentation fault)

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 780896] [NEW] Needs recompile after update of bridge-utils to 1.5-1 and higher

2011-05-10 Thread zigi
Public bug reported:

From brigde-utils changelog:

Relocate ifupdown.sh to /lib/bridge-utils and brctl to /sbin.  Closes:
#569350.

But libvirt expects brctl in /usr/sbin/.

** Affects: libvirt (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: oneiric

** Tags added: oneiric

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libvirt in Ubuntu.
https://bugs.launchpad.net/bugs/780896

Title:
  Needs recompile after update of bridge-utils to 1.5-1 and higher

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 780896] Re: Needs recompile after update of bridge-utils to 1.5-1 and higher

2011-05-10 Thread zigi
system: oneiric, Linux 2.6.39-1-generic #6-Ubuntu SMP Thu May 5 22:11:02 UTC 
2011 x86_64 x86_64 x86_64 GNU/Linux
libvirt installed version: 0.8.8-1ubuntu7

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libvirt in Ubuntu.
https://bugs.launchpad.net/bugs/780896

Title:
  Needs recompile after update of bridge-utils to 1.5-1 and higher

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 780907] [NEW] package samba-common 2:3.4.7~dfsg-1ubuntu3.6 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script killed by signal (Segmentation fault)

2011-05-10 Thread xvader
Public bug reported:

Binary package hint: samba

i tried to update my system, but this error encountered followed with
some other package errors too. and now, my system is completely
destroyed! this never ever happened before!

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: samba-common 2:3.4.7~dfsg-1ubuntu3.6
ProcVersionSignature: Ubuntu 2.6.32-31.60-generic 2.6.32.32+drm33.14
Uname: Linux 2.6.32-31-generic i686
Architecture: i386
BothFailedConnect: Yes
Date: Wed May 11 11:14:33 2011
ErrorMessage: ErrorMessage: subprocess installed post-installation script 
killed by signal (Segmentation fault)
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100429)
PackageArchitecture: all
SambaServerRegression: Yes
SourcePackage: samba
Title: package samba-common 2:3.4.7~dfsg-1ubuntu3.6 failed to install/upgrade: 
ErrorMessage: subprocess installed post-installation script killed by signal 
(Segmentation fault)

** Affects: samba (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in Ubuntu.
https://bugs.launchpad.net/bugs/780907

Title:
  package samba-common 2:3.4.7~dfsg-1ubuntu3.6 failed to
  install/upgrade: ErrorMessage: subprocess installed post-installation
  script killed by signal (Segmentation fault)

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 780907] Re: package samba-common 2:3.4.7~dfsg-1ubuntu3.6 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script killed by signal (Segmentation fault)

2011-05-10 Thread xvader
-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in Ubuntu.
https://bugs.launchpad.net/bugs/780907

Title:
  package samba-common 2:3.4.7~dfsg-1ubuntu3.6 failed to
  install/upgrade: ErrorMessage: subprocess installed post-installation
  script killed by signal (Segmentation fault)

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 780906] [NEW] package postfix 2.7.0-1 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script killed by signal (Segmentation fault)

2011-05-10 Thread xvader
Public bug reported:

Binary package hint: postfix

i tried to update my system, but this error encountered followed with
some other package errors too. and now, my system is completely
destroyed! this never ever happened before!

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: postfix 2.7.0-1
ProcVersionSignature: Ubuntu 2.6.32-31.60-generic 2.6.32.32+drm33.14
Uname: Linux 2.6.32-31-generic i686
Architecture: i386
Date: Wed May 11 11:15:18 2011
ErrorMessage: ErrorMessage: subprocess installed post-installation script 
killed by signal (Segmentation fault)
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100429)
SourcePackage: postfix
Title: package postfix 2.7.0-1 failed to install/upgrade: ErrorMessage: 
subprocess installed post-installation script killed by signal (Segmentation 
fault)

** Affects: postfix (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to postfix in Ubuntu.
https://bugs.launchpad.net/bugs/780906

Title:
  package postfix 2.7.0-1 failed to install/upgrade: ErrorMessage:
  subprocess installed post-installation script killed by signal
  (Segmentation fault)

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 780906] Re: package postfix 2.7.0-1 failed to install/upgrade: ErrorMessage: subprocess installed post-installation script killed by signal (Segmentation fault)

2011-05-10 Thread xvader
-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to postfix in Ubuntu.
https://bugs.launchpad.net/bugs/780906

Title:
  package postfix 2.7.0-1 failed to install/upgrade: ErrorMessage:
  subprocess installed post-installation script killed by signal
  (Segmentation fault)

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs