[Bug 1354069] Re: please merge php5 from debian

2014-08-11 Thread Ondřej Surý
My personal suggestion would be to stick with 5.5.latest in utopic.
You can use master-5.5 branch for that.

People can always use PPAs to update to 5.6 when it's ready (f.e. my
ppa:ondrej/php5-5.6).

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

Title:
  please merge php5 from debian

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1354069/+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 1350810] Re: Shift-F2 no longer working in Byobu in Ubuntu 14.10 (utopic) with tmux 1.9

2014-08-11 Thread Michał Sawicz
Hey, sorry for the delay. Unfortunately no, reverting this commit
doesn't help (as suggested in the upstream bug).

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

Title:
  Shift-F2 no longer working in Byobu in Ubuntu 14.10 (utopic) with tmux
  1.9

To manage notifications about this bug go to:
https://bugs.launchpad.net/tmux/+bug/1350810/+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 1354745] Re: umask 111 in envvars

2014-08-11 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

I tried to reproduce this by installing the apache2 package on a fresh
Utopic system, which gave me version 2.4.10-1ubuntu1. This gave me no
mention of umask; neither in /etc/apache2/envvars, nor in
/etc/init.d/apache2.

Please provide steps to reproduce your problem - specifically steps to
reproduce umask ending up incorrectly in the file, and separately steps
to reproduce it coming back after you attempt an upgrade.

Once done, please change the bug status back to New.

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

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

Title:
  umask 111 in envvars

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1354745/+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 1355056] Re: Error for send big message

2014-08-11 Thread Tonal
Maybe related https://bugs.launchpad.net/txamqp/+bug/1023327

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

Title:
  Error for send big message

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/txamqp/+bug/1355056/+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 1355056] [NEW] Error for send big message

2014-08-11 Thread Tonal
Public bug reported:

Run simple client for send big message:
Output:
$ ./tx-err_big_semd.py 
Connected to broker.
Authenticated. Ready to receive messages
Message max length: 131072
Sending message: len=262144 prop: {}
Unhandled Error
Traceback (most recent call last):
  File /usr/lib/python2.7/dist-packages/twisted/internet/defer.py, line 423, 
in errback
self._startRunCallbacks(fail)
  File /usr/lib/python2.7/dist-packages/twisted/internet/defer.py, line 490, 
in _startRunCallbacks
self._runCallbacks()
  File /usr/lib/python2.7/dist-packages/twisted/internet/defer.py, line 577, 
in _runCallbacks
current.result = callback(current.result, *args, **kw)
  File /usr/lib/python2.7/dist-packages/twisted/internet/defer.py, line 1155, 
in gotResult
_inlineCallbacks(r, g, deferred)
--- exception caught here ---
  File /usr/lib/python2.7/dist-packages/twisted/internet/defer.py, line 1097, 
in _inlineCallbacks
result = result.throwExceptionIntoGenerator(g)
  File /usr/lib/python2.7/dist-packages/twisted/python/failure.py, line 389, 
in throwExceptionIntoGenerator
return g.throw(self.type, self.value, self.tb)
  File ./tx-err_big_semd.py, line 35, in gotConnection
yield chan.channel_close()
  File /usr/lib/python2.7/dist-packages/twisted/internet/defer.py, line 1097, 
in _inlineCallbacks
result = result.throwExceptionIntoGenerator(g)
  File /usr/lib/python2.7/dist-packages/twisted/python/failure.py, line 389, 
in throwExceptionIntoGenerator
return g.throw(self.type, self.value, self.tb)
  File /usr/lib/python2.7/dist-packages/txamqp/protocol.py, line 86, in invoke
raise Closed(self.reason)
txamqp.client.Closed: Method(name=close, id=50) (501, 'FRAME_ERROR - type 3, 
all octets = : {frame_too_large,262144,131064}', 0, 0) content = None

Client code: file tx-err_big_semd.py
from twisted.internet.defer import inlineCallbacks
from twisted.internet import reactor
from twisted.internet.protocol import ClientCreator
from twisted.python import log

from txamqp.protocol import AMQClient
from txamqp.client import TwistedDelegate
from txamqp.content import Content

import txamqp.spec

TEST_QUEUE = 'test.queue'

@inlineCallbacks
def gotConnection(conn, username, password):
print Connected to broker.
yield conn.authenticate(username, password, mechanism='PLAIN')
print Authenticated. Ready to receive messages

chan = yield conn.channel(1)
yield chan.channel_open()

yield chan.queue_declare(
  queue=TEST_QUEUE, durable=True, exclusive=False, auto_delete=False)

print 'Message max length:', conn.MAX_LENGTH
msg = Content(' ' * conn.MAX_LENGTH * 2)
chan.basic_publish(exchange='', content=msg, routing_key=TEST_QUEUE)
print Sending message: len=%d prop: %s % (len(msg.body), msg.properties)
yield

yield chan.channel_close()

chan0 = yield conn.channel(0)
yield chan0.connection_close()

reactor.stop()

if __name__ == __main__:

host = 'localhost'
port = 5672
vhost = '/'
username = 'guest'
password = 'guest'
SPEC = 'https://www.rabbitmq.com/resources/specs/amqp0-9.stripped.xml'
spec = txamqp.spec.load(SPEC)

delegate = TwistedDelegate()

d = ClientCreator(reactor, AMQClient, delegate=delegate, vhost=vhost,
spec=spec).connectTCP(host, port)

d.addCallback(gotConnection, username, password)

def whoops(err):
if reactor.running:
log.err(err)
reactor.stop()

d.addErrback(whoops)

reactor.run()

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: python-txamqp 0.6.1-0ubuntu2
ProcVersionSignature: Ubuntu 3.13.0-32.57-generic 3.13.11.4
Uname: Linux 3.13.0-32-generic x86_64
NonfreeKernelModules: fglrx wl
ApportVersion: 2.14.1-0ubuntu3.3
Architecture: amd64
CurrentDesktop: KDE
Date: Mon Aug 11 15:29:55 2014
InstallationDate: Installed on 2011-12-10 (975 days ago)
InstallationMedia: Kubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
PackageArchitecture: all
SourcePackage: txamqp
UpgradeStatus: Upgraded to trusty on 2014-04-23 (110 days ago)

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


** Tags: amd64 apport-bug trusty

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

Title:
  Error for send big message

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/txamqp/+bug/1355056/+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 1354699] Re: libldns.pc (pkg-config description) installed in wrong folder

2014-08-11 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Reproduced on Trusty but not on Utopic. It looks like this was fixed in
Debian (1.6.17-2).

Since this is fixed in the development release, I'm marking this as Fix
Released.

If you need a fix for an existing stable release, please comment with a
justification against https://wiki.ubuntu.com/StableReleaseUpdates#When
and complete steps 1 through 4 in
https://wiki.ubuntu.com/StableReleaseUpdates#Procedure - and go ahead
with all the steps if you can. Note that that SRU team would need to
make a final decision.

I'm not sure it's worth an SRU unless there's a specific problem case
that needs to be solved for Ubuntu users on Trusty.

** Bug watch added: Debian Bug tracker #746614
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=746614

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

** Changed in: ldns (Ubuntu)
   Status: New = Fix Released

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

Title:
  libldns.pc (pkg-config description) installed in wrong folder

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ldns/+bug/1354699/+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 1347954] Re: build slapd-sha2 module for strong passwords

2014-08-11 Thread Robie Basak
** Changed in: openldap (Ubuntu)
   Status: New = Triaged

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

Title:
  build slapd-sha2 module for strong passwords

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openldap/+bug/1347954/+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 1355069] [NEW] Sync nose 1.3.3-2 (main) from Debian unstable (main)

2014-08-11 Thread Dmitry Shachnev
Public bug reported:

Please sync nose 1.3.3-2 (main) from Debian unstable (main)

Changelog entries since current utopic version 1.3.3-1:

nose (1.3.3-2) unstable; urgency=low

  * Add patch to make sure we call super constructor for LazySuite. Without
this, tests fail under Python3.4 as _removed_tests not defined. Patch
copied from https://github.com/nose-devs/nose/pull/811 which has been
included upstream in git. Closes: #757640.

 -- Brian May b...@debian.org  Mon, 11 Aug 2014 09:21:01 +1000

** Affects: nose (Ubuntu)
 Importance: Wishlist
 Status: New

** Changed in: nose (Ubuntu)
   Importance: Undecided = Wishlist

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

Title:
  Sync nose 1.3.3-2 (main) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nose/+bug/1355069/+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 1354699] Re: libldns.pc (pkg-config description) installed in wrong folder

2014-08-11 Thread Bug Watch Updater
** Changed in: ldns (Debian)
   Status: Unknown = Fix Released

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

Title:
  libldns.pc (pkg-config description) installed in wrong folder

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ldns/+bug/1354699/+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 1226127] Re: glance should support syncing cloud images

2014-08-11 Thread James Page
This is supported via the glance-simplestreams-sync charm.

** Changed in: glance (Juju Charms Collection)
   Status: Triaged = Invalid

** No longer affects: glance (Ubuntu Trusty)

** Changed in: glance (Ubuntu)
   Status: Invalid = Triaged

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

Title:
  glance should support syncing cloud images

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glance/+bug/1226127/+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 1354159] Re: [SRU] icehouse 2014.1.2 point release

2014-08-11 Thread Launchpad Bug Tracker
** Branch linked: lp:~corey.bryant/keystone/2014.1.2

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

Title:
  [SRU] icehouse 2014.1.2 point release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceilometer/+bug/1354159/+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 1354159] Re: [SRU] icehouse 2014.1.2 point release

2014-08-11 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-server-dev/ceilometer/icehouse

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

Title:
  [SRU] icehouse 2014.1.2 point release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceilometer/+bug/1354159/+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 1354159] Re: [SRU] icehouse 2014.1.2 point release

2014-08-11 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-server-dev/trove/icehouse

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

Title:
  [SRU] icehouse 2014.1.2 point release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceilometer/+bug/1354159/+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 1347567] Re: trove unit tests disabled

2014-08-11 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-server-dev/trove/icehouse

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

Title:
  trove unit tests disabled

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openstack-trove/+bug/1347567/+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 1354159] Re: [SRU] icehouse 2014.1.2 point release

2014-08-11 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-server-dev/horizon/icehouse

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

Title:
  [SRU] icehouse 2014.1.2 point release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceilometer/+bug/1354159/+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 1354159] Re: [SRU] icehouse 2014.1.2 point release

2014-08-11 Thread James Page
Trove is not covered under the MRE for OpenStack yet.

** Changed in: openstack-trove (Ubuntu)
   Status: New = Won't Fix

** Changed in: openstack-trove (Ubuntu Trusty)
   Status: New = Won't Fix

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

Title:
  [SRU] icehouse 2014.1.2 point release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceilometer/+bug/1354159/+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 1185019] Re: rootwrap sudoers configuration does not follow packaging guidelines

2014-08-11 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-server-dev/cinder/icehouse

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

Title:
  rootwrap sudoers configuration does not follow packaging guidelines

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cinder/+bug/1185019/+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 1240049] Re: multipath udev rules problem

2014-08-11 Thread Guy Rozendorn
the patch removes the warning but still, something isn't right --
multipathd does not show the devices that shoul've been created by the
udev rule. we're gathering more information and will update soon.

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

Title:
  multipath udev rules problem

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/multipath-tools/+bug/1240049/+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 1354159] Re: [SRU] icehouse 2014.1.2 point release

2014-08-11 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-server-dev/cinder/icehouse

** Branch linked: lp:~ubuntu-server-dev/glance/icehouse

** Branch linked: lp:~ubuntu-server-dev/nova/icehouse

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

Title:
  [SRU] icehouse 2014.1.2 point release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceilometer/+bug/1354159/+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 1219658] Re: Wrong image size using rbd backend for libvirt

2014-08-11 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-server-dev/nova/icehouse

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

Title:
  Wrong image size using rbd backend for libvirt

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/havana/+bug/1219658/+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 1342000] Re: UBUNTU14.10-LE:liz:Ubuntu installation failing on virtio-scsi disk with disk image type raw

2014-08-11 Thread Tim Gardner
Will appear in Ubuntu-3.16.0-7.12

** Changed in: linux (Ubuntu)
   Status: In Progress = Fix Committed

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

Title:
  UBUNTU14.10-LE:liz:Ubuntu installation failing on virtio-scsi disk
  with disk image type raw

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1342000/+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 1354159] Re: [SRU] icehouse 2014.1.2 point release

2014-08-11 Thread David Medberry
@jamespage when will this hit t-proposed?

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

Title:
  [SRU] icehouse 2014.1.2 point release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceilometer/+bug/1354159/+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 1354159] Re: [SRU] icehouse 2014.1.2 point release

2014-08-11 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-server-dev/neutron/icehouse

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

Title:
  [SRU] icehouse 2014.1.2 point release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceilometer/+bug/1354159/+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 1291321] Re: migration fails between 12.04 Precise and 14.04 Trusty

2014-08-11 Thread Serge Hallyn
Quoting Matt Mullins (mokom...@gmail.com):
 That's awesome.  I just got a chance to test it out, and with a couple
 hiccups (below), I seem to have successfully migrated a guest from a
 precise host to a new trusty one.
 
 It looks like qemu failed to build in Serge's PPA due to the spice that
 also lives in that PPA.  I built the qemu from the source in that PPA,
 and it built without modification.

D'oh, indeed I misspoke in my last comment.
I didn't want to drop that spice package so the trusty packages
built in ppa:serge-hallyn/qemu-p-migration

 I also got 'pci_add_option_rom: failed to find romfile pxe-
 virtio.rom.12.04' the first time I did the migration with libvirt; a

Ah yes, I forgot to add that file to the qemu package.

Thanks for testing.

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

Title:
  migration fails between 12.04 Precise and 14.04 Trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/1291321/+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 1185019] Re: rootwrap sudoers configuration does not follow packaging guidelines

2014-08-11 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-server-dev/neutron/icehouse

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

Title:
  rootwrap sudoers configuration does not follow packaging guidelines

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cinder/+bug/1185019/+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 1354159] Re: [SRU] icehouse 2014.1.2 point release

2014-08-11 Thread Launchpad Bug Tracker
** Branch linked: lp:~ubuntu-server-dev/keystone/icehouse

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

Title:
  [SRU] icehouse 2014.1.2 point release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceilometer/+bug/1354159/+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 1355253] [NEW] Apache reloading before package setup

2014-08-11 Thread ñull
Public bug reported:

I don't know if this is specific for php5-curl or that it occurs with
all php modules. When I install this module I see that first the apache
server is reloaded and then the module is set-up. Shouldn't the order be
reversed? Wasn't it the idea that Apache is reloaded automatically after
an update in PHP? :

Unpacking php5-curl (from .../php5-curl_5.3.10-1ubuntu3.13_amd64.deb) ...
Processing triggers for libapache2-mod-php5 ...
 * Reloading web server config apache2  

   [ OK ] 
Setting up php5-curl (5.3.10-1ubuntu3.13) ...

Now I needed to reload Apache manually for it to work.

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

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

Title:
  Apache reloading before package setup

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1355253/+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 1354159] Re: [SRU] icehouse 2014.1.2 point release

2014-08-11 Thread James Page
@med hopefully soon - but I have only just finishing reviewing and
uploading for Corey.

In the meantime all the pkgs have been built here as well:

  https://launchpad.net/~james-page/+archive/ubuntu/icehouse/+packages


** Changed in: ceilometer (Ubuntu)
   Status: New = Invalid

** Changed in: cinder (Ubuntu)
   Status: New = Invalid

** Changed in: glance (Ubuntu)
   Status: New = Invalid

** Changed in: heat (Ubuntu)
   Status: New = Invalid

** Changed in: horizon (Ubuntu)
   Status: New = Invalid

** Changed in: keystone (Ubuntu)
   Status: New = Invalid

** Changed in: neutron (Ubuntu)
   Status: New = Invalid

** Changed in: nova (Ubuntu)
   Status: New = Invalid

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

Title:
  [SRU] icehouse 2014.1.2 point release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceilometer/+bug/1354159/+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 1350435] Re: tcg.c:1693: tcg fatal error

2014-08-11 Thread Serge Hallyn
Are these new failures using the qem upackage in ppa:serge-hallyn/qemu-
user-thread, or using the stock trusty qemu package?

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

Title:
  tcg.c:1693: tcg fatal error

To manage notifications about this bug go to:
https://bugs.launchpad.net/launchpad-buildd/+bug/1350435/+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 1317090] Re: qemu fails on ELF files with no section headers

2014-08-11 Thread Serge Hallyn
Yes, it's the same bug or same class of bugs where qemu is being
stricter than the kernel, for better or worse.

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

Title:
  qemu fails on ELF files with no section headers

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1317090/+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 1291321] Re: migration fails between 12.04 Precise and 14.04 Trusty

2014-08-11 Thread Serge Hallyn
(Note, the patches being tested are the ones from this thread:
https://lists.nongnu.org/archive/html/qemu-devel/2014-07/msg03160.html )

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

Title:
  migration fails between 12.04 Precise and 14.04 Trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/1291321/+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 1352209] Re: docker.io update to 1.0 in trusty-updates

2014-08-11 Thread Dustin Kirkland 
** Changed in: docker.io (Ubuntu Trusty)
 Assignee: Adam Conrad (adconrad) = (unassigned)

** Changed in: docker.io (Ubuntu)
   Status: Fix Released = Invalid

** Changed in: docker.io (Ubuntu Trusty)
   Status: Confirmed = Invalid

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

Title:
  docker.io update to 1.0 in trusty-updates

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/docker.io/+bug/1352209/+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 1286209] Re: unhandled trace if no namespaces in metering agent

2014-08-11 Thread Bellantuono Daniel
I have a similar problem, the metering service print this error even when you 
delete a router.
I think that the namespace is deleted but the service does not notice

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

Title:
  unhandled trace if no namespaces in metering agent

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1286209/+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 1350435] Re: tcg.c:1693: tcg fatal error

2014-08-11 Thread LocutusOfBorg
How can I use your one? I have no possibility to tweak the host system,
I'm not an lp admin, do you think I can try to add your ppa as
dependency and it will work?

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

Title:
  tcg.c:1693: tcg fatal error

To manage notifications about this bug go to:
https://bugs.launchpad.net/launchpad-buildd/+bug/1350435/+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 1350435] Re: tcg.c:1693: tcg fatal error

2014-08-11 Thread Serge Hallyn
No, that won't work as it's the emulator in which the build is running.

You should however be able to install the ppa's qemu on a local host,
install a standard ubuntu server vm, apt-get install ubuntu-dev-tools,
copy the package sources over to the vm, and build the packages inside
the vm.

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

Title:
  tcg.c:1693: tcg fatal error

To manage notifications about this bug go to:
https://bugs.launchpad.net/launchpad-buildd/+bug/1350435/+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 1319578] Re: qcow2: Preventing invalid write on metadata (overlaps with refcount block); image marked as corrupt.

2014-08-11 Thread Serge Hallyn
*** This bug is a duplicate of bug 1292234 ***
https://bugs.launchpad.net/bugs/1292234

** This bug has been marked a duplicate of bug 1292234
   qcow2 image corruption in trusty (qemu 1.7 and 2.0 candidate)

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

Title:
  qcow2: Preventing invalid write on metadata (overlaps with refcount
  block); image marked as corrupt.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu/+bug/1319578/+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 1317651] Re: ppc: VM hangs on first boot after network install

2014-08-11 Thread Serge Hallyn
I don't see a /etc/init/serial.conf in my trusty or utopic hosts.  Is
that only intalled on ppc hosts?

** No longer affects: qemu (Ubuntu)

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

Title:
  ppc:  VM hangs on first boot after network install

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/upstart/+bug/1317651/+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 1129571] Re: libreoffice armhf FTBFS

2014-08-11 Thread Serge Hallyn
** Changed in: qemu (Ubuntu)
   Importance: High = Medium

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

Title:
  libreoffice armhf FTBFS

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1129571/+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 1342000] Re: UBUNTU14.10-LE:liz:Ubuntu installation failing on virtio-scsi disk with disk image type raw

2014-08-11 Thread Serge Hallyn
** Changed in: qemu (Ubuntu)
   Status: New = Invalid

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

Title:
  UBUNTU14.10-LE:liz:Ubuntu installation failing on virtio-scsi disk
  with disk image type raw

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1342000/+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 1354069] Re: please merge php5 from debian

2014-08-11 Thread Robie Basak
OK, so I think we should stick to 5.5.latest in Utopic then. I'll mark
Won't Fix to reflect this for now, but feel free to change this bug into
one to update to 5.5.latest, or file a new bug for that, or whatever.

Also unsubscribing ~ubuntu-sponsors as we have nothing to upload now.

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

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

Title:
  please merge php5 from debian

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1354069/+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 1285508] Re: [ppa 2.0~git-20140225] mouse cursor invisible with Ubuntu live system

2014-08-11 Thread Serge Hallyn
Hi Martin,

when you get this, I assume that is with the standard trusty or utopic
package?

I ask because the subject says 'ppa' - i'd like to remove that.

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

Title:
  [ppa 2.0~git-20140225] mouse cursor invisible with Ubuntu live system

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1285508/+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 1355343] [NEW] cloud-init writes sources.list without newline at end of file

2014-08-11 Thread Robie Basak
Public bug reported:

This happens on Utopic. Trusty is fine. Steps to reproduce:

sudo lxc-create -t ubuntu-cloud -n utopic -- -F -s daily -r utopic
sudo lxc-start-ephemeral -o trusty -n test -d
sudo lxc-attach -n test -- login -f root

Examine /etc/apt/sources.list inside the host. For example, cat
/etc/apt/sources.list shows the subsequent prompt at the end of the
last line instead of on a fresh line. vim /etc/apt/sources.list says
noeol.

Expected: newline at end of file, following Unix convention.
Actual: no newline at end of file.

Impact: messes up my local script that does trivial manipulations (adds
a local repository).

I've examined the sources.list shipped with the image, and it doesn't
have this problem and the sources.list I see after startup looks
radically different (matching the template in /etc/cloud/...). So it
seems to me that the templating mechanism inside cloud-init is causing
this.

ProblemType: Bug
DistroRelease: Ubuntu 14.10
Package: cloud-init 0.7.6~bzr992-0ubuntu1
ProcVersionSignature: Ubuntu 3.13.0-7.26-generic 3.13.1
Uname: Linux 3.13.0-7-generic x86_64
NonfreeKernelModules: veth xt_conntrack ipt_REJECT ip6table_filter ip6_tables 
ebtable_nat ebtables overlayfs xt_CHECKSUM iptable_mangle ipt_MASQUERADE 
iptable_nat nf_conntrack_ipv4 nf_defrag_ipv4 nf_nat_ipv4 nf_nat nf_conntrack 
xt_tcpudp bridge stp llc iptable_filter ip_tables x_tables dm_crypt kvm_intel 
kvm crct10dif_pclmul crc32_pclmul ghash_clmulni_intel microcode psmouse 
serio_raw aesni_intel aes_x86_64 glue_helper lrw gf128mul ablk_helper cryptd 
floppy
ApportVersion: 2.14.5-0ubuntu4
Architecture: amd64
Date: Mon Aug 11 18:00:26 2014
PackageArchitecture: all
ProcEnviron:
 TERM=screen
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: cloud-init
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: cloud-init (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug uec-images utopic

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

Title:
  cloud-init writes sources.list without newline at end of file

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1355343/+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 1292234] Re: qcow2 image corruption in trusty (qemu 1.7 and 2.0 candidate)

2014-08-11 Thread Serge Hallyn
As far as I know, everyone who has experienced this has been using a
thinkpad.  I've first experienced this myself last week, on a new
thinkpad running utopic.

Two curious things I noticed, beside this being a thinkpad:

1. I could not start the VM with the bad image at all.  Until I rebooted.
Then the image was fine, and fsck-clean.  This suggests a possible problem
with the page cache on the host.

2. I then disabled KSM.  I have not seen this problem since then, however I
also have not hit a vm quite as hard yet.  Will have to see whether a series
of package builds manages to make this happen again with KSM disabled.

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

Title:
  qcow2 image corruption in trusty (qemu 1.7 and 2.0 candidate)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu/+bug/1292234/+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


[Blueprint servercloud-u-server-core] General server work for Utopic

2014-08-11 Thread Serge Hallyn
Blueprint changed by Serge Hallyn:

Work items changed:
  Work items for ubuntu-14.06:
  [serge-hallyn] convert libvirt to cgmanager (4d): DONE
  [racb] Early cycle merge report: POSTPONED
  [serge-hallyn] merge qemu: DONE
  
  Work items for ubuntu-14.07:
  [serge-hallyn] cgmanager package into debian: DONE
  [serge-hallyn] systemd-shim integration for cgmanager: DONE
  [jamespage] (with raharper) docker 1.0 in 14.04: INPROGRESS
  
  Work items for ubuntu-14.08:
  [racb] Late cycle merge report: TODO
  [smoser] add simplestreams data to ubuntu core images: TODO
- [serge-hallyn] triage qemu bugs: INPROGRESS
- [serge-hallyn] triage libvirt bugs: TODO
- [serge-hallyn] provide cgmanager features through systemd: TODO
- [serge-hallyn] handle high prio qemu bugs: TODO
- [serge-hallyn] handle high prio libvirt bugs: TODO
+ [serge-hallyn] triage qemu bugs: DONE
+ [serge-hallyn] provide cgmanager features through systemd: INPROGRESS
+ [serge-hallyn] go over high prio qemu bugs: DONE
  [racb] bcache in universe: TODO
  [racb] add scribe (https://github.com/facebook/scribe) to universe: POSTPONED
  [racb] add meteor (https://github.com/meteor/meteor) to universe: POSTPONED
  
  Work items for ubuntu-14.09:
  [smoser] write documentation on the process of how to do image customization 
in simplestreams: TODO
+ [serge-hallyn] triage libvirt bugs: TODO
+ [serge-hallyn] go over high prio libvirt bugs: TODO
  
  Work items for ubuntu-14.10:
  determine ssd caching solution (bcache is it): DONE
  investigate support of ruby for puppet: TODO

-- 
General server work for Utopic
https://blueprints.launchpad.net/ubuntu/+spec/servercloud-u-server-core

-- 
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 1324174] Re: qemu should attempt to re-load kvm_intel to enable nesting at first install

2014-08-11 Thread Serge Hallyn
** Also affects: qemu (Ubuntu Trusty)
   Importance: Undecided
   Status: New

** Changed in: qemu (Ubuntu Trusty)
   Status: New = Confirmed

** Changed in: qemu (Ubuntu Trusty)
   Importance: Undecided = Medium

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

Title:
  qemu should attempt to re-load kvm_intel to enable nesting at first
  install

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu/+bug/1324174/+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 1342000] Re: UBUNTU14.10-LE:liz:Ubuntu installation failing on virtio-scsi disk with disk image type raw

2014-08-11 Thread Launchpad Bug Tracker
This bug was fixed in the package linux - 3.16.0-7.12

---
linux (3.16.0-7.12) utopic; urgency=low

  [ Andy Whitcroft ]

  * rebase to v3.16 final
  * [Config] d-i -- add virtio_scsi to virtio-modules
- LP: #1342000

  [ dann frazier ]

  * [Packaging] Fix 'printchanges' to work with versions containing '+'

  [ Tim Gardner ]

  * [Config] CONFIG_MICROCODE=y
- LP: #1084373
  * [Config] CONFIG_CONTEXT_TRACKING_FORCE=n
- LP: #1349028
  * [Config] Add hv_balloon to d-i virtio-modules
- LP: #1292216
  * Release Tracking Bug
- LP: #1354530

  [ Upstream Kernel Changes ]

  * rebase to v3.16
 -- Tim Gardner tim.gard...@canonical.com   Tue, 29 Jul 2014 09:55:15 -0400

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

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

Title:
  UBUNTU14.10-LE:liz:Ubuntu installation failing on virtio-scsi disk
  with disk image type raw

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1342000/+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 1330504] Re: strongSwan 5.1.3

2014-08-11 Thread Jamie Strandboge
Two entries were missing from the changelog:
* debian/libstrongswan.install: install new acert.* files
* debian/usr.lib.ipsec.stroke: add capability dac_override

I'm still going through the package, but will simply add these as part
of the sponsoring process.

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

Title:
  strongSwan 5.1.3

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/strongswan/+bug/1330504/+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 1273484] Re: nagios-plugins renamed to monitoring-plugins

2014-08-11 Thread Bug Watch Updater
** Changed in: nagios-plugins (Debian)
   Status: New = Fix Released

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

Title:
  nagios-plugins renamed to monitoring-plugins

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nagios-plugins/+bug/1273484/+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 1330504] Re: strongSwan 5.1.3

2014-08-11 Thread Jamie Strandboge
Comparing build logs looks good. Comparing binaries looks good. Changes
look fine (excepting the two minor issues I mentioned). The test suites
pass during the build. ACK with my changes (uploading now).

** Changed in: strongswan (Ubuntu)
   Status: Triaged = Fix Committed

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

Title:
  strongSwan 5.1.3

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/strongswan/+bug/1330504/+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 1324174] Re: qemu should attempt to re-load kvm_intel to enable nesting at first install

2014-08-11 Thread Launchpad Bug Tracker
This bug was fixed in the package qemu - 2.1+dfsg-2ubuntu2

---
qemu (2.1+dfsg-2ubuntu2) utopic; urgency=medium

  * reload kvm_intel if needed to set the nested=Y flag (LP: #1324174)
 -- Serge Hallyn serge.hal...@ubuntu.com   Mon, 11 Aug 2014 12:58:50 -0500

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

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

Title:
  qemu should attempt to re-load kvm_intel to enable nesting at first
  install

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu/+bug/1324174/+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 1240049] Re: multipath udev rules problem

2014-08-11 Thread Guy Rozendorn
multipathd does not act upon udev changes -- its very easy to see when
running udev monitor and multipathd -v9 -d and then attaching new disks.

by the looks of it, support for monitoring events by libudev was only added in 
2013, far later than 0.4.9
everything seems to exist in 0.5, and none of it was merged to Ubuntu, yet.

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

Title:
  multipath udev rules problem

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/multipath-tools/+bug/1240049/+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 1330504] Re: strongSwan 5.1.3

2014-08-11 Thread LocutusOfBorg
FYI the ppc64el build failed (tests)
https://launchpad.net/ubuntu/+source/strongswan/5.1.3-0ubuntu1/+build/6260486

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

Title:
  strongSwan 5.1.3

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/strongswan/+bug/1330504/+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 1257186] Re: memory leakage messages

2014-08-11 Thread Brian Murray
** Changed in: samba (Ubuntu Trusty)
Milestone: ubuntu-14.04.1 = ubuntu-14.04.2

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

Title:
  memory leakage messages

To manage notifications about this bug go to:
https://bugs.launchpad.net/samba/+bug/1257186/+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 1289527] Re: qemu-aarch64-static: java dies with SIGILL

2014-08-11 Thread dann frazier
Using 2.1+dfsg-2ubuntu2 from utopic within a trusty ubuntu core:

# /usr/bin/qemu-aarch64-static -d unimp /usr/bin/java 
host mmap_min_addr=0x1
Reserved 0x12000 bytes of guest address space
Relocating guest address space from 0x0040 to 0x40
guest_base  0x0
startend  size prot
0040-00401000 1000 r-x
0041-00412000 2000 rw-
0040-00401000 1000 ---
00401000-004000801000 0080 rw-
004000801000-00400081c000 0001b000 r-x
00400081c000-00400082c000 0001 ---
00400082c000-00400082f000 3000 rw-
start_brk   0x
end_code0x00400834
start_code  0x0040
start_data  0x00410db0
end_data0x00411030
start_stack 0x0040008007b0
brk 0x00411038
entry   0x004000801f80
qemu: uncaught target signal 11 (Segmentation fault) - core dumped
Segmentation fault (core dumped)

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

Title:
  qemu-aarch64-static: java dies with SIGILL

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1289527/+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 1289527] Re: qemu-aarch64-static: java dies with SIGILL

2014-08-11 Thread dann frazier
I'm also seeing a SEGV (not a SIGILL) when testing the version of QEMU
that shipped in trusty. So, we might just consider this bug fixed and
track this segfault issue separately.

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

Title:
  qemu-aarch64-static: java dies with SIGILL

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1289527/+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 1297487] Re: MTU not honored in virtio vnet

2014-08-11 Thread Ian Wells
Seems to me that the issue is not that the MTU isn't being honoured, but
that the MTU should be checked *before* TSO assembly and not *after*.
Assembly should happen outside the VM if the VM has enabled it on the
interface internally, and clearly the incoming segments (not packets, at
this point) may be longer than the MTU.

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

Title:
  MTU not honored in virtio vnet

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1297487/+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 1315888] Re: Zlib functions (gzopen etc.) are undefined while gzopen64 etc. exist

2014-08-11 Thread Beat
Now a few months since report: Any fix in sight ?

We got another report for this issue here too:
http://www.joomlapolis.com/forum/154-advanced-members-support/226150-workaround-found-reappearance-of-older-qabort-pclpclziplibphp--missing-zlib-extensionsq-error-cb-191

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

Title:
  Zlib functions (gzopen etc.) are undefined while gzopen64 etc. exist

To manage notifications about this bug go to:
https://bugs.launchpad.net/php/+bug/1315888/+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 1354602] Re: package rpcbind 0.2.0-7ubuntu1.2 failed to install/upgrade: trying to overwrite '/usr/share/man/man8/rpcinfo.8.gz', which is also in package libc-bin 2.15-0ubuntu10.6

2014-08-11 Thread Steve Langasek
I confirm this bug in the rpcbind package.

This is an issue specific to upgrades from precise; no fix is needed for
utopic.  (A wrong fix is included via Debian; I have reopened Debian bug
#734903 with regards to this.)

** Also affects: rpcbind (Ubuntu Trusty)
   Importance: Undecided
   Status: New

** Changed in: rpcbind (Ubuntu Trusty)
   Importance: Undecided = High

** Changed in: rpcbind (Ubuntu Trusty)
   Status: New = Triaged

** Changed in: rpcbind (Ubuntu Trusty)
 Assignee: (unassigned) = Steve Langasek (vorlon)

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

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

Title:
  package rpcbind 0.2.0-7ubuntu1.2 failed to install/upgrade: trying to
  overwrite '/usr/share/man/man8/rpcinfo.8.gz', which is also in package
  libc-bin 2.15-0ubuntu10.6

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rpcbind/+bug/1354602/+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 1354602] Re: package rpcbind 0.2.0-7ubuntu1.2 failed to install/upgrade: trying to overwrite '/usr/share/man/man8/rpcinfo.8.gz', which is also in package libc-bin 2.15-0ubuntu10.6

2014-08-11 Thread Steve Langasek
** Description changed:

- Received an upgrade notice. I executed the upgrade procedures which
- indicated 529 packages need to be installed. Upgrade requesrted that I
- install the DVD. of the ISO file I had downloaded. Upgrade did not
- complete and failed to reboot. I had to use recovery mode in order to
- log back in. Again I received a mesage indicvating that 244 files needed
- to be upgrade. This attempt alos failed. Received various messages the
- there were dependencies issue and could not continue the upgrade
+ [Impact]
+ A missing replaces: from rpcbind against the version of libc-bin in 12.04 
means that upgrades may fail if libc-bin and rpcbind aren't unpacked in the 
right order.
+ 
+ [Test case]
+ 1. Install rpcbind on 12.04.
+ 2. dist-upgrade to 14.04.
+ 3. confirm that the upgrade fails due to rpcbind being unpacked before 
libc-bin is upgraded.
+ 4. enable trusty-proposed in sources.list.
+ 5. apt-get -f install
+ 6. apt-get install rpcbind
+ 7. confirm that the package install completes successfully
+ 8. confirm that apt-get dist-upgrade completes successfully
+ 
+ [Regression potential]
+ Any changes to the package relationships may have an unforeseen detrimental 
impact on apt's resolver.  However, these are non-trivial to find in advance 
and this change is locally correct with regards to package relationships.
+ 
+ 
+ Received an upgrade notice. I executed the upgrade procedures which indicated 
529 packages need to be installed. Upgrade requesrted that I install the DVD. 
of the ISO file I had downloaded. Upgrade did not complete and failed to 
reboot. I had to use recovery mode in order to log back in. Again I received 
a mesage indicvating that 244 files needed to be upgrade. This attempt alos 
failed. Received various messages the there were dependencies issue and could 
not continue the upgrade
  
  ProblemType: Package
  DistroRelease: Ubuntu 12.04
  Package: rpcbind 0.2.0-7ubuntu1.2
  ProcVersionSignature: Ubuntu 3.2.0-67.101-generic 3.2.60
  Uname: Linux 3.2.0-67-generic x86_64
  ApportVersion: 2.0.1-0ubuntu17.6
  AptOrdering:
-  rpcbind: Install
-  rpcbind: Configure
+  rpcbind: Install
+  rpcbind: Configure
  Architecture: amd64
  Date: Fri Aug  8 16:48:55 2014
  DpkgTerminalLog:
-  Preparing to unpack .../rpcbind_0.2.1-2ubuntu1_amd64.deb ...
-  portmap stop/waiting
-  Unpacking rpcbind (0.2.1-2ubuntu1) over (0.2.0-7ubuntu1.2) ...
-  dpkg: error processing archive /media/Ubuntu-Server 14.04.1 LTS 
amd64//pool/main/r/rpcbind/rpcbind_0.2.1-2ubuntu1_amd64.deb (--unpack):
-   trying to overwrite '/usr/share/man/man8/rpcinfo.8.gz', which is also in 
package libc-bin 2.15-0ubuntu10.6
+  Preparing to unpack .../rpcbind_0.2.1-2ubuntu1_amd64.deb ...
+  portmap stop/waiting
+  Unpacking rpcbind (0.2.1-2ubuntu1) over (0.2.0-7ubuntu1.2) ...
+  dpkg: error processing archive /media/Ubuntu-Server 14.04.1 LTS 
amd64//pool/main/r/rpcbind/rpcbind_0.2.1-2ubuntu1_amd64.deb (--unpack):
+   trying to overwrite '/usr/share/man/man8/rpcinfo.8.gz', which is also in 
package libc-bin 2.15-0ubuntu10.6
  DuplicateSignature: package:rpcbind:0.2.0-7ubuntu1.2:trying to overwrite 
'/usr/share/man/man8/rpcinfo.8.gz', which is also in package libc-bin 
2.15-0ubuntu10.6
  ErrorMessage: trying to overwrite '/usr/share/man/man8/rpcinfo.8.gz', which 
is also in package libc-bin 2.15-0ubuntu10.6
  InstallationMedia: Ubuntu-Server 12.04.1 LTS Precise Pangolin - Release 
amd64 (20120817.3)
  MarkForUpload: True
  SourcePackage: rpcbind
  Title: package rpcbind 0.2.0-7ubuntu1.2 failed to install/upgrade: trying to 
overwrite '/usr/share/man/man8/rpcinfo.8.gz', which is also in package libc-bin 
2.15-0ubuntu10.6
  UpgradeStatus: No upgrade log present (probably fresh install)

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

Title:
  package rpcbind 0.2.0-7ubuntu1.2 failed to install/upgrade: trying to
  overwrite '/usr/share/man/man8/rpcinfo.8.gz', which is also in package
  libc-bin 2.15-0ubuntu10.6

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rpcbind/+bug/1354602/+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 1354602] Re: package rpcbind 0.2.0-7ubuntu1.2 failed to install/upgrade: trying to overwrite '/usr/share/man/man8/rpcinfo.8.gz', which is also in package libc-bin 2.15-0ubuntu10.6

2014-08-11 Thread Chris Halse Rogers
Hello Gregory, or anyone else affected,

Accepted rpcbind into trusty-proposed. The package will build now and be
available at
http://launchpad.net/ubuntu/+source/rpcbind/0.2.1-2ubuntu2.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!

** Changed in: rpcbind (Ubuntu Trusty)
   Status: Triaged = Fix Committed

** Tags added: verification-needed

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

Title:
  package rpcbind 0.2.0-7ubuntu1.2 failed to install/upgrade: trying to
  overwrite '/usr/share/man/man8/rpcinfo.8.gz', which is also in package
  libc-bin 2.15-0ubuntu10.6

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rpcbind/+bug/1354602/+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