[Bug 1091577] Re: unable to ping hosts by windows hostname

2013-01-02 Thread karaluh
** Attachment added: log.winbindd.1.gz
   
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1091577/+attachment/3472425/+files/log.winbindd.1.gz

-- 
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/1091577

Title:
  unable to ping hosts by windows hostname

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1091577/+subscriptions

-- 
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 1091577] Re: unable to ping hosts by windows hostname

2013-01-02 Thread karaluh
** Attachment added: log.wb-UBUNTU
   
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1091577/+attachment/3472426/+files/log.wb-UBUNTU

** Changed in: samba (Ubuntu)
   Status: Incomplete = 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/1091577

Title:
  unable to ping hosts by windows hostname

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/1091577/+subscriptions

-- 
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 1091602] Re: Please enhance bind9 to use forwarder addresses from resolvconf

2013-01-02 Thread Thomas Hood
** Bug watch added: Debian Bug tracker #687507
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=687507

** Also affects: resolvconf (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=687507
   Importance: Unknown
   Status: Unknown

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

Title:
  Please enhance bind9 to use forwarder addresses from resolvconf

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bind9/+bug/1091602/+subscriptions

-- 
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 1091602] Re: Please enhance bind9 to use forwarder addresses from resolvconf

2013-01-02 Thread Bug Watch Updater
** Changed in: resolvconf (Debian)
   Status: Unknown = Fix Released

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

Title:
  Please enhance bind9 to use forwarder addresses from resolvconf

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bind9/+bug/1091602/+subscriptions

-- 
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 1068405] Re: catalina.properties use hard references to /var/lib/tomcat7/

2013-01-02 Thread Bug Watch Updater
** Changed in: tomcat7 (Debian)
   Status: New = Fix Released

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

Title:
  catalina.properties use hard references to /var/lib/tomcat7/

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tomcat6/+bug/1068405/+subscriptions

-- 
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 1088295] Re: lxc container can control other container's cpu share, memory limit, or access of block and character devices

2013-01-02 Thread OpenStack Hudson
Reviewed:  https://review.openstack.org/18788
Committed: 
http://github.com/openstack/openstack-manuals/commit/6b188da11ca022a98463cdcd1652b919c5db74dc
Submitter: Jenkins
Branch:master

commit 6b188da11ca022a98463cdcd1652b919c5db74dc
Author: annegentle a...@openstack.org
Date:   Mon Dec 31 14:38:36 2012 -0600

Adds fair warnings about LXC not recommended for use in production.

Fix bug 1088295

Patch set adds Thierry's suggested edits.

Change-Id: If9a215b90649110aaee8a5095c3874ad22a9f8f8


** Changed in: openstack-manuals
   Status: In Progress = Fix Released

-- 
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/1088295

Title:
  lxc container can control  other container's cpu share,memory limit,or
  access of  block and character devices

To manage notifications about this bug go to:
https://bugs.launchpad.net/openstack-manuals/+bug/1088295/+subscriptions

-- 
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: [Qemu-devel] [Bug 1025244] Re: qcow2 image increasing disk size above the virtual limit

2013-01-02 Thread Stefan Hajnoczi
On Tue, Dec 18, 2012 at 10:18:20AM -, Andy Menzel wrote:
 Any solution right now? I have a similar problem like Todor Andreev;
 Our daily backup of some virtual machines (qcow2) looks like that:
 
 1. shutdown the VM
 2. create a snapshot via: qemu-img snapshot -c nameofsnapshot...
 3. boot the VM
 4. backup the snapshot to another virtual disk via: qemu-img convert  -f 
 qcow2 -O qcow2 -s nameofsnapshot...
 5. DELETE the snapshot from VM via: qemu-img snapshot -d nameofsnapshot...

It's not safe to modify the qcow2 file while the guest is running.  This
means Step 5 is not really safe and could result in an inconsistent
image.

This may also be causing the problem: the QEMU process has a variable
with the next free cluster index.  Since Step 5 runs as a separate
process it does not update the QEMU process' next free cluster index
variable.  QEMU doesn't know that there are now free clusters within the
image file because you updated the file behind QEMU's back - the result
is that it grows the file.

Please try deleting the last backup snapshot between Step 1 and Step 2.
This way you'll free the space while QEMU isn't accessing the image
file.  When you boot up the image file again QEMU should reuse the freed
clusters.

Stefan

-- 
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/1025244

Title:
  qcow2 image increasing disk size above the virtual limit

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1025244/+subscriptions

-- 
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 1068365] Re: openvswitch gre tunnels not working in quantal

2013-01-02 Thread Serge Hallyn
Thiago,

I *think* you misunderstood.

There is no claim that this is fixed in the upstream driver.

Rather the openvswitch-dkms package, which has the non-upstream kernel
driver, was re-added to the archive.  You can install and use it to use
this feature until the feature is added to the upstream kernel driver.

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

Title:
  openvswitch gre tunnels not working in quantal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1068365/+subscriptions

-- 
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 1094019] Re: Linux's getdents gets /.. inode number from host system under LXC

2013-01-02 Thread Serge Hallyn
I can't reproduce this on my raring laptop.

ubuntu@r2:~$ ls -lid / /..
2783189 drwxr-xr-x 22 root root 4096 Jan  2 15:58 /
2783189 drwxr-xr-x 22 root root 4096 Jan  2 15:58 /..

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

Title:
  Linux's getdents gets /.. inode number from host system under LXC

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1094019/+subscriptions

-- 
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: [Qemu-devel] [Bug 1025244] Re: qcow2 image increasing disk size above the virtual limit

2013-01-02 Thread Eric Blake
On 01/02/2013 08:50 AM, Stefan Hajnoczi wrote:
 On Tue, Dec 18, 2012 at 10:18:20AM -, Andy Menzel wrote:
 Any solution right now? I have a similar problem like Todor Andreev;
 Our daily backup of some virtual machines (qcow2) looks like that:

 1. shutdown the VM
 2. create a snapshot via: qemu-img snapshot -c nameofsnapshot...
 3. boot the VM
 4. backup the snapshot to another virtual disk via: qemu-img convert  -f 
 qcow2 -O qcow2 -s nameofsnapshot...
 5. DELETE the snapshot from VM via: qemu-img snapshot -d nameofsnapshot...
 
 It's not safe to modify the qcow2 file while the guest is running.  This
 means Step 5 is not really safe and could result in an inconsistent
 image.
 
 This may also be causing the problem: the QEMU process has a variable
 with the next free cluster index.  Since Step 5 runs as a separate
 process it does not update the QEMU process' next free cluster index
 variable.  QEMU doesn't know that there are now free clusters within the
 image file because you updated the file behind QEMU's back - the result
 is that it grows the file.
 
 Please try deleting the last backup snapshot between Step 1 and Step 2.
 This way you'll free the space while QEMU isn't accessing the image
 file.  When you boot up the image file again QEMU should reuse the freed
 clusters.

You might also want to try modifying step 5 to use the HMP delvm monitor
command from within the running qemu rather than going behind qemu's
back with a qemu-img invocation.  That's how libvirt deletes internal
snapshots from a running qemu.

Also, there are patches currently under review that are talking about
creating a QMP counterpart to the delvm monitor command.

-- 
Eric Blake   eblake redhat com+1-919-301-3266
Libvirt virtualization library http://libvirt.org

-- 
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/1025244

Title:
  qcow2 image increasing disk size above the virtual limit

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1025244/+subscriptions

-- 
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 1094019] Re: Linux's getdents gets /.. inode number from host system under LXC

2013-01-02 Thread Serge Hallyn
Nor can I reproduce it on a precise instance running 3.2.0-35-virtual
#55-Ubuntu:

ubuntu@p1:~$ ls -lid / /..
139754 drwxr-xr-x 22 root root 4096 Jan  2 16:09 /
139754 drwxr-xr-x 22 root root 4096 Jan  2 16:09 /..


** Changed in: lxc (Ubuntu)
   Importance: Undecided = Critical

** Changed in: lxc (Ubuntu)
   Importance: Critical = Medium

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

Title:
  Linux's getdents gets /.. inode number from host system under LXC

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1094019/+subscriptions

-- 
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 1094019] Re: Linux's getdents gets /.. inode number from host system under LXC

2013-01-02 Thread Serge Hallyn
Ok, sorry, I see now.  Yes i can reproduce this with getdents of course.

This has nothing to do with lxc lying, and yes if you need to work
around this you'll need to use blockdev-backed rootfs for the
containers.

The container is set up with the tasks pivot_root'd into the container's
/, which in your case is a bind mount.  Resolution of '..' respects the
fact that the /var/lib/lxc/container/rootfs should be root, and returns
itself.  However, there is only one actual directory entry for
/var/lib/lxc/container/rootfs in all the kernel, and it's '..'
(d_parent) points to /var/lib/lxc/container.  Lxc can't do anything
about that.  The kernel's flexible mounts, bind mounts, and mounts
namespaces provide different *views* of the filesystems, don't change
what is in the actual filesystems.

** Changed in: lxc (Ubuntu)
   Status: New = Won't Fix

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

Title:
  Linux's getdents gets /.. inode number from host system under LXC

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1094019/+subscriptions

-- 
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 589063] Re: Windows Server 2008 won't boot with more than 4 vCPUs

2013-01-02 Thread Simon Déziel
@Serge, any chance in finding an admin to accept the upload to
-proposed? Thanks

-- 
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/589063

Title:
  Windows Server 2008 won't boot with more than 4 vCPUs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/589063/+subscriptions

-- 
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 1094019] Re: Linux's getdents gets /.. inode number from host system under LXC

2013-01-02 Thread Ahmed Kamal
Hi Serge,

You need to compile the C code on
http://www.kernel.org/doc/man-pages/online/pages/man2/getdents.2.html
and run it to see this issue. It's getdent sys-call that sees different
numbers. Please confirm


On Wed, Jan 2, 2013 at 6:10 PM, Serge Hallyn 1094...@bugs.launchpad.netwrote:

 Nor can I reproduce it on a precise instance running 3.2.0-35-virtual
 #55-Ubuntu:

 ubuntu@p1:~$ ls -lid / /..
 139754 drwxr-xr-x 22 root root 4096 Jan  2 16:09 /
 139754 drwxr-xr-x 22 root root 4096 Jan  2 16:09 /..


 ** Changed in: lxc (Ubuntu)
Importance: Undecided = Critical

 ** Changed in: lxc (Ubuntu)
Importance: Critical = Medium

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1094019

 Title:
   Linux's getdents gets /.. inode number from host system under LXC

 Status in “lxc” package in Ubuntu:
   New

 Bug description:
   Calling getdents on / gets the host system's inode number for /..,
 which is different from /. unlike real (non lxc) systems.
   This causes flexlm to fail

   More info at http://foss-boss.blogspot.com/2012/12/LXC-lies-about
   -..-inode-number-making-flexlm-unhappy.html

   ProblemType: Bug
   DistroRelease: Ubuntu 12.04
   Package: lxc 0.7.5-3ubuntu65
   ProcVersionSignature: User Name 3.2.0-34.53-virtual 3.2.33
   Uname: Linux 3.2.0-34-virtual x86_64
   ApportVersion: 2.0.1-0ubuntu15
   Architecture: amd64
   Date: Thu Dec 27 13:13:46 2012
   Ec2AMI: ami-2737b74e
   Ec2AMIManifest: (unknown)
   Ec2AvailabilityZone: us-east-1d
   Ec2InstanceType: t1.micro
   Ec2Kernel: aki-825ea7eb
   Ec2Ramdisk: unavailable
   KernLog:

   MarkForUpload: True
   ProcEnviron:
TERM=xterm
LANG=en_US.UTF-8
SHELL=/bin/bash
   SourcePackage: lxc
   UpgradeStatus: No upgrade log present (probably fresh install)
   lxcsyslog:

   modified.conffile..etc.lxc.lxc.conf: [modified]
   mtime.conffile..etc.lxc.lxc.conf: 2012-12-04T17:17:14.072195

 To manage notifications about this bug go to:
 https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1094019/+subscriptions


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

Title:
  Linux's getdents gets /.. inode number from host system under LXC

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1094019/+subscriptions

-- 
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 1094019] Re: Linux's getdents gets /.. inode number from host system under LXC

2013-01-02 Thread Ahmed Kamal
Ok I see, will use block backed lxc then. Thanks


On Wed, Jan 2, 2013 at 6:32 PM, Serge Hallyn 1094...@bugs.launchpad.netwrote:

 Ok, sorry, I see now.  Yes i can reproduce this with getdents of course.

 This has nothing to do with lxc lying, and yes if you need to work
 around this you'll need to use blockdev-backed rootfs for the
 containers.

 The container is set up with the tasks pivot_root'd into the container's
 /, which in your case is a bind mount.  Resolution of '..' respects the
 fact that the /var/lib/lxc/container/rootfs should be root, and returns
 itself.  However, there is only one actual directory entry for
 /var/lib/lxc/container/rootfs in all the kernel, and it's '..'
 (d_parent) points to /var/lib/lxc/container.  Lxc can't do anything
 about that.  The kernel's flexible mounts, bind mounts, and mounts
 namespaces provide different *views* of the filesystems, don't change
 what is in the actual filesystems.

 ** Changed in: lxc (Ubuntu)
Status: New = Won't Fix

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1094019

 Title:
   Linux's getdents gets /.. inode number from host system under LXC

 Status in “lxc” package in Ubuntu:
   Won't Fix

 Bug description:
   Calling getdents on / gets the host system's inode number for /..,
 which is different from /. unlike real (non lxc) systems.
   This causes flexlm to fail

   More info at http://foss-boss.blogspot.com/2012/12/LXC-lies-about
   -..-inode-number-making-flexlm-unhappy.html

   ProblemType: Bug
   DistroRelease: Ubuntu 12.04
   Package: lxc 0.7.5-3ubuntu65
   ProcVersionSignature: User Name 3.2.0-34.53-virtual 3.2.33
   Uname: Linux 3.2.0-34-virtual x86_64
   ApportVersion: 2.0.1-0ubuntu15
   Architecture: amd64
   Date: Thu Dec 27 13:13:46 2012
   Ec2AMI: ami-2737b74e
   Ec2AMIManifest: (unknown)
   Ec2AvailabilityZone: us-east-1d
   Ec2InstanceType: t1.micro
   Ec2Kernel: aki-825ea7eb
   Ec2Ramdisk: unavailable
   KernLog:

   MarkForUpload: True
   ProcEnviron:
TERM=xterm
LANG=en_US.UTF-8
SHELL=/bin/bash
   SourcePackage: lxc
   UpgradeStatus: No upgrade log present (probably fresh install)
   lxcsyslog:

   modified.conffile..etc.lxc.lxc.conf: [modified]
   mtime.conffile..etc.lxc.lxc.conf: 2012-12-04T17:17:14.072195

 To manage notifications about this bug go to:
 https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1094019/+subscriptions


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

Title:
  Linux's getdents gets /.. inode number from host system under LXC

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1094019/+subscriptions

-- 
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 1045986] Re: Ubuntu AppArmor policy is too lenient with shell scripts

2013-01-02 Thread Brian Murray
Hello Jamie, or anyone else affected,

Accepted apport into precise-proposed. The package will build now and be
available at
http://launchpad.net/ubuntu/+source/apport/2.0.1-0ubuntu17.1 in a few
hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Tags added: verification-needed

-- 
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/1045986

Title:
  Ubuntu AppArmor policy is too lenient with shell scripts

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apparmor/+bug/1045986/+subscriptions

-- 
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 1080912] Re: qemu-kvm must depend on udev

2013-01-02 Thread Adam Conrad
Hello Jared, or anyone else affected,

Accepted qemu-kvm into precise-proposed. The package will build now and
be available at http://launchpad.net/ubuntu/+source/qemu-kvm/1.0+noroms-
0ubuntu14.6 in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Tags removed: verification-done

** Tags added: verification-needed

-- 
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/1080912

Title:
  qemu-kvm must depend on udev

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1080912/+subscriptions

-- 
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 1078530] Please test proposed package

2013-01-02 Thread Adam Conrad
Hello Robert, or anyone else affected,

Accepted qemu-kvm into precise-proposed. The package will build now and
be available at http://launchpad.net/ubuntu/+source/qemu-kvm/1.0+noroms-
0ubuntu14.6 in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

-- 
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/1078530

Title:
  upstart job fails to start under lxc

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1078530/+subscriptions

-- 
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 1077838] Re: qemu-nbd -r -c taints device for subsequent usage, even after -d

2013-01-02 Thread Adam Conrad
Hello Robert, or anyone else affected,

Accepted qemu-kvm into precise-proposed. The package will build now and
be available at http://launchpad.net/ubuntu/+source/qemu-kvm/1.0+noroms-
0ubuntu14.6 in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Tags removed: verification-done

** Tags added: verification-needed

-- 
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/1077838

Title:
  qemu-nbd -r -c taints device for subsequent usage, even after -d

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1077838/+subscriptions

-- 
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 1057024] Re: kvm kernel module always loaded, without setting /dev/kvm permissions

2013-01-02 Thread Adam Conrad
Hello Parameswaran, or anyone else affected,

Accepted qemu-kvm into precise-proposed. The package will build now and
be available at http://launchpad.net/ubuntu/+source/qemu-kvm/1.0+noroms-
0ubuntu14.6 in a few hours, and then in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Tags removed: verification-done

** Tags added: verification-needed

-- 
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/1057024

Title:
  kvm kernel module always loaded, without setting /dev/kvm permissions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1057024/+subscriptions

-- 
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 1068365] Re: openvswitch gre tunnels not working in quantal

2013-01-02 Thread Thiago Martins
Thank you Serge! I'll try that... Sorry for the confusion.

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

Title:
  openvswitch gre tunnels not working in quantal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1068365/+subscriptions

-- 
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 1095180] Re: incorrect bash-completion

2013-01-02 Thread Rolf Leggewie
** Description changed:

  bash-completion in precise is faulty
  
  $ cd /etc
- $ sudo git etckeTAB
+ $ sudo etckeTAB
  
  that completes to
  
- $ sudo git etckeeper/
+ $ sudo etckeeper/
  
  when it should complete only to
  
  $ sudo git etckeeper

** Description changed:

  bash-completion in precise is faulty
  
  $ cd /etc
  $ sudo etckeTAB
  
  that completes to
  
  $ sudo etckeeper/
  
  when it should complete only to
  
- $ sudo git etckeeper
+ $ sudo etckeeper

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

Title:
  incorrect bash-completion

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/etckeeper/+bug/1095180/+subscriptions

-- 
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 262892] Re: Possible bug found in SSHD and tunneling(Based on question number 43605)

2013-01-02 Thread Tom Moore
FYI.. this is probably related to SSHD and not ubuntu.  This happens on
archlinux as well, and may have something to do with DNS lookups that
are forwarded through the SSH proxy.   Changing AddressFamily inet in
sshd_config may help, as that prevents the dns from doing ipv6 lookups.

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

Title:
  Possible bug found in SSHD and tunneling(Based on question number
  43605)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/262892/+subscriptions

-- 
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 1077838] Re: qemu-nbd -r -c taints device for subsequent usage, even after -d

2013-01-02 Thread Serge Hallyn
Re-verified in precise.

** Tags removed: verification-needed
** Tags added: verification-done

-- 
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/1077838

Title:
  qemu-nbd -r -c taints device for subsequent usage, even after -d

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1077838/+subscriptions

-- 
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 1057024] Re: kvm kernel module always loaded, without setting /dev/kvm permissions

2013-01-02 Thread Serge Hallyn
Re-verified.

** Tags removed: verification-needed
** Tags added: verification-done

-- 
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/1057024

Title:
  kvm kernel module always loaded, without setting /dev/kvm permissions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1057024/+subscriptions

-- 
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 1080912] Re: qemu-kvm must depend on udev

2013-01-02 Thread Serge Hallyn
** Tags removed: verification-needed
** Tags added: verification-done

** Tags removed: verification-done
** Tags added: verification-needed

** Tags removed: verification-needed
** Tags added: verification-done

-- 
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/1080912

Title:
  qemu-kvm must depend on udev

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1080912/+subscriptions

-- 
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 1083155] Re: Unable to set Content-MD5 header when using chunked transfer encoding

2013-01-02 Thread OpenStack Hudson
Reviewed:  https://review.openstack.org/17926
Committed: 
http://github.com/openstack/glance/commit/cb54b00873e1c72c481d30fc8aef5e8c51d5e964
Submitter: Jenkins
Branch:master

commit cb54b00873e1c72c481d30fc8aef5e8c51d5e964
Author: Sascha Peilicke sasc...@suse.de
Date:   Wed Dec 12 11:36:14 2012 +0100

Set Content-MD5 after calling webob.Response._app_iter__set.

Discussed upstream at https://github.com/Pylons/webob/issues/86

Fixes bug 1083155

Change-Id: I75c634880e7abaacdcd416c27391e9fdc4874049


** Changed in: glance
   Status: In Progress = Fix Committed

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

Title:
  Unable to set Content-MD5 header when using chunked transfer encoding

To manage notifications about this bug go to:
https://bugs.launchpad.net/glance/+bug/1083155/+subscriptions

-- 
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 1078530] Re: upstart job fails to start under lxc

2013-01-02 Thread Serge Hallyn
Verified in precise - I installed qemu-kvm in a precise container on a
precise host (which had qemu-kvm installed, so the kernel module was
loaded).  Package installation succeeded, as does 'sudo stop qemu-kvm;
sudo start qemu-kvm'

** Tags removed: verification-needed
** Tags added: verification-done

-- 
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/1078530

Title:
  upstart job fails to start under lxc

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1078530/+subscriptions

-- 
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 1094921] Re: keystone postinst fails with KeyError: VerNum(4)

2013-01-02 Thread Brian Murray
** Tags added: precise

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

Title:
  keystone postinst fails with KeyError: VerNum(4)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/keystone/+bug/1094921/+subscriptions

-- 
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 1095180] Re: incorrect bash-completion

2013-01-02 Thread Thomas Ward
Hello, and thanks for reporting your bug!

We need a little bit more information from you about the system and what
version of the software you are using.

Can you please include the output of `lsb_release -a` (which will tell
us which version of Ubuntu you are using) and `dpkg -l etckeeper\*`
(which will tell us which version of etckeeper you are using) to your
bug as a comment?

--
Thomas Ward
BugSquad Member

** Changed in: etckeeper (Ubuntu)
   Status: New = Incomplete

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

Title:
  incorrect bash-completion

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/etckeeper/+bug/1095180/+subscriptions

-- 
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 1095181] Re: terrible breakage on git rebase

2013-01-02 Thread Serge Hallyn
Thanks for taking the time to report this bug.

The README in etckeeper points out that etckeeper tracks file metadata
that git otherwise ignores.  Could you tell us exactly how what steps
you are taking, i.e. how you are rebasing?

Could you tell us which release you are on?

** Changed in: etckeeper (Ubuntu)
   Importance: Undecided = High

** Changed in: etckeeper (Ubuntu)
   Status: New = Incomplete

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

Title:
  terrible breakage on git rebase

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/etckeeper/+bug/1095181/+subscriptions

-- 
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 1057024] Re: kvm kernel module always loaded, without setting /dev/kvm permissions

2013-01-02 Thread Adam Gandelman
The fix in quantal-proposed is currently complicated by a udev bug
#1092715.  The udev trigger from the postinst doesn't seem to pick up
the new rules file in /lib/udev/rules.d, and permissions are not updated
by the trigger.

-- 
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/1057024

Title:
  kvm kernel module always loaded, without setting /dev/kvm permissions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1057024/+subscriptions

-- 
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 1094921] Re: keystone postinst fails with KeyError: VerNum(4)

2013-01-02 Thread Brian Murray
** Changed in: keystone (Ubuntu)
   Importance: Undecided = High

** Changed in: keystone (Ubuntu)
 Assignee: (unassigned) = Canonical Server Team (canonical-server)

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

Title:
  keystone postinst fails with KeyError: VerNum(4)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/keystone/+bug/1094921/+subscriptions

-- 
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 1094921] Re: keystone postinst fails with KeyError: VerNum(4)

2013-01-02 Thread Adam Gandelman
Looks like an issue in the postinst's call to 'keystone-manage db_sync'.
Can't seem to reproduce when upgrading between the same versions, using
the default (empty) local sqlite db, but this was probably hit against a
live, remote database?

James, what db backend is in use?  Can you confirm the database is under
python-migrate's version control?  There should be a 'migrate_version'
table in Keystone's database with a 'version' field, likely set to '4'
(for Essex, anyway)

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

Title:
  keystone postinst fails with KeyError: VerNum(4)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/keystone/+bug/1094921/+subscriptions

-- 
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 1003842] Re: dnsmasq sometimes fails to resolve private names in networks with non-equivalent nameservers

2013-01-02 Thread Lothar
I experienced the problems described where I lost DNS resolution when
connected to a corporate VPN.

With help from a coworker I fixed it temporarily by commenting
#dns=dnsmasq
in /etc/NetworkManager/NetworkManager.conf as recommended in bug #903854

P.S.
I lost a lot of time trying to figure out why my VPN connections were suddenly 
no longer working.
I hope Ubuntu finds a permanent solution that keeps private VPNs working.

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

Title:
  dnsmasq sometimes fails to resolve private names in networks with non-
  equivalent nameservers

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dnsmasq/+bug/1003842/+subscriptions

-- 
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 1089791] Re: route_info failed

2013-01-02 Thread Thiago Martins
Hi!

 I followed this guide: http://docs.openstack.org/folsom/basic-
install/content/basic-install_intro.html more than 10 times.

 Always I hit this problem:

--
cloud-init start-local running: Thu, 03 Jan 2013 04:20:52 +. up 8.53 seconds

no instance data found in start-local

cloud-init-nonet waiting 120 seconds for a network device.

cloud-init-nonet gave up waiting for a network device.

ci-info: lo: 1 127.0.0.1   255.0.0.0   .

ci-info: eth0  : 1 .   .   fa:16:3e:83:06:4f

route_info failed

Waiting for network configuration...

Waiting up to 60 more seconds for network configuration...

Booting system without full network configuration...
--

 So, no network connectivity within my Instance.

 How can I debug it?

Tks,
Thiago

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

Title:
  route_info failed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nova/+bug/1089791/+subscriptions

-- 
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 941968] Re: lockfile-create hangs inside lxc containers (potential buffer overflow?)

2013-01-02 Thread Sebastian Hoffmann
I accidentally reproduced this, using:
username project64198
environment democluster
service hbase-master

project64198-democluster-hbase-master-2 has 40 characters. After I
destroyed the environment and recreated under the name demo, everything
was running fine.

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

Title:
  lockfile-create hangs inside lxc containers (potential buffer
  overflow?)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/941968/+subscriptions

-- 
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