[Bug 1355253] Re: Apache reloading before package setup

2015-04-08 Thread cooolman
Please update packages
ubuntu server 15.04
php 5.6.4 - php 5.6.7

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is a bug assignee.
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 1441273] [NEW] Unity Samba WINS NETBIOS

2015-04-08 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

Feature request for file sharing in Unity to automatically enable WINS
when someone shares via right-click menu and to automatically assign
netbios name = $hostname.

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


** Tags: bot-comment
-- 
Unity Samba WINS NETBIOS
https://bugs.launchpad.net/bugs/1441273
You received this bug notification because you are a member of Ubuntu Server 
Team, which is subscribed to samba in Ubuntu.

-- 
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 1439645] Re: nova can't schedule instance with libvirt-xen driver

2015-04-08 Thread Boris Derzhavets
Reproduced with same errors via devstack with nova.git already patched
per https://bugs.launchpad.net/nova/+bug/1425115. No manual intervention
from my side.

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

Title:
  nova can't schedule instance  with libvirt-xen driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nova/+bug/1439645/+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 1358835] Comment bridged from LTC Bugzilla

2015-04-08 Thread bugproxy
--- Comment From thierry.fa...@fr.ibm.com 2015-03-05 10:05 EDT---
Verified:
gcc test.c -ldl -o test
ubuntu@vm19:~$ ./test 80
80
cpu 80 belongs to node 2
ubuntu@vm19:~$ numactl -H
available: 4 nodes (0-3)
node 0 cpus: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
node 0 size: 969 MB
node 0 free: 445 MB
node 1 cpus: 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
node 1 size: 1022 MB
node 1 free: 777 MB
node 2 cpus: 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 
121 122 123 124 125 126 127
node 2 size: 1022 MB
node 2 free: 37 MB
node 3 cpus: 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
node 3 size: 1017 MB
node 3 free: 907 MB
node distances:
node   0   1   2   3
0:  10  40  40  40
1:  40  10  40  40
2:  40  40  10  40
3:  40  40  40  10
ubuntu@vm19:~$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=14.04
DISTRIB_CODENAME=trusty
DISTRIB_DESCRIPTION=Ubuntu 14.04.2 LTS

--- Comment From mainam...@in.ibm.com 2015-03-19 05:43 EDT---
The test described in the bug fails in Ubuntu 14.04.2.

The following packages were tried as well: libnuma1 2.0.9~rc5-1ubuntu3
and numactl  2.0.9~rc5-1ubuntu3

In all cases the test failed. The efix for 14.04.1 provided by Thierry
Fauck worked but it was not used  in 14.04.02

--- Comment From mainam...@in.ibm.com 2015-03-25 10:41 EDT---
Any updates on this?

--- Comment From thierry.fa...@fr.ibm.com 2015-04-08 07:54 EDT---
Commit 573609fb2711b6c09090cc3fef9a771ae9eb246b sent to maintainers

From 573609fb2711b6c09090cc3fef9a771ae9eb246b Mon Sep 17 00:00:00 2001
From: Thierry FAUCK - IBM LTC thie...@linux.vnet.ibm.com
Date: Tue, 7 Apr 2015 17:53:34 +0200
Subject: [PATCH] libnuma.so On ppc64el, cpu number are not contigous

Commit 32075635db57c3d5efe12f8fb569af857e01ccad issuea warning message
/sys not mounted when it find a non existent cpu number, and that's the
default for multinode on ppc64el bare metal installed system. This patch
removes the message when the /sys entry doesn't exist, but use the return
code.

Signed-off-by: Thierry FAUCK - IBM LTC thie...@linux.vnet.ibm.com

modified:   libnuma.c
---
libnuma.c |   22 +-
1 file changed, 13 insertions(+), 9 deletions(-)

diff --git a/libnuma.c b/libnuma.c
index 3717d5b..98aa10f 100644
--- a/libnuma.c
+++ b/libnuma.c
@@ -1276,11 +1276,13 @@ numa_node_to_cpus_v1(int node, unsigned long *buffer, 
int bufferlen)
sprintf(fn, /sys/devices/system/node/node%d/cpumap, node);
f = fopen(fn, r);
if (!f || getdelim(line, len, '\n', f)  1) {
-   numa_warn(W_nosysfs2,
-  /sys not mounted or invalid. Assuming one node: %s,
+   if (f) {
+   numa_warn(W_nosysfs2,
+ /sys not mounted or invalid. Assuming one node: %s,
strerror(errno));
-   numa_warn(W_nosysfs2,
-  (cannot open or correctly parse %s), fn);
+   numa_warn(W_nosysfs2,
+ (cannot open or correctly parse %s), fn);
+   }
bitmask.maskp = (unsigned long *)mask;
bitmask.size  = buflen_needed * 8;
numa_bitmask_setall(bitmask);
@@ -1355,11 +1357,13 @@ numa_node_to_cpus_v2(int node, struct bitmask *buffer)
sprintf(fn, /sys/devices/system/node/node%d/cpumap, node);
f = fopen(fn, r);
if (!f || getdelim(line, len, '\n', f)  1) {
-   numa_warn(W_nosysfs2,
-  /sys not mounted or invalid. Assuming one node: %s,
- strerror(errno));
-   numa_warn(W_nosysfs2,
-  (cannot open or correctly parse %s), fn);
+   if (f) {
+   numa_warn(W_nosysfs2,
+ /sys not mounted or invalid. Assuming one node: %s,
+ strerror(errno));
+   numa_warn(W_nosysfs2,
+ (cannot open or correctly parse %s), fn);
+   }
numa_bitmask_setall(mask);
err = -1;
}
--
1.7.9.5

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

Title:
  numa_node_of_cpu() returns warning  when cpu_index  79

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/numactl/+bug/1358835/+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 1439988] Re: package init-system-helpers 1.22ubuntu4 failed to install/upgrade: trying to overwrite '/lib/init/apparmor-profile-load', which is also in package upstart-bin 1.13.2-0ubuntu9

2015-04-08 Thread Bart Janssens
I can confirm that the problem is resolved for me on a vivid install.

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

Title:
  package init-system-helpers 1.22ubuntu4 failed to install/upgrade:
  trying to overwrite '/lib/init/apparmor-profile-load', which is also
  in package upstart-bin 1.13.2-0ubuntu9

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/init-system-helpers/+bug/1439988/+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 1420572] Re: [SRU] race between neutron-ovs-cleanup and nova-compute

2015-04-08 Thread Corey Bryant
** 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 nova in Ubuntu.
https://bugs.launchpad.net/bugs/1420572

Title:
  [SRU] race between neutron-ovs-cleanup and nova-compute

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nova/+bug/1420572/+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 1403841] Re: libvirt snapshot does not save source in xml

2015-04-08 Thread Launchpad Bug Tracker
This bug was fixed in the package libvirt - 1.2.2-0ubuntu13.1.10

---
libvirt (1.2.2-0ubuntu13.1.10) trusty-proposed; urgency=medium

  * 9035-qemu-snapshot-save-persistent-domain-config: upstream fix for a
regression where persistent domain config was not saved after an external
snapshot.  (LP: #1403841)
  * 9036-dont-fail-without-cpu-model.patch: fix virsh safe with cpu mode =
host-passthrough (LP: #1262641)
 -- Serge Hallyn serge.hal...@ubuntu.com   Tue, 10 Feb 2015 14:34:16 -0600

** Changed in: libvirt (Ubuntu Trusty)
   Status: Fix Committed = 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/1403841

Title:
  libvirt snapshot does not save source in xml

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/1403841/+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 1262641] Re: virsh save and virsh managedsave failed with cpu mode = host-passthrough

2015-04-08 Thread Launchpad Bug Tracker
This bug was fixed in the package libvirt - 1.2.2-0ubuntu13.1.10

---
libvirt (1.2.2-0ubuntu13.1.10) trusty-proposed; urgency=medium

  * 9035-qemu-snapshot-save-persistent-domain-config: upstream fix for a
regression where persistent domain config was not saved after an external
snapshot.  (LP: #1403841)
  * 9036-dont-fail-without-cpu-model.patch: fix virsh safe with cpu mode =
host-passthrough (LP: #1262641)
 -- Serge Hallyn serge.hal...@ubuntu.com   Tue, 10 Feb 2015 14:34:16 -0600

** Changed in: libvirt (Ubuntu Trusty)
   Status: Fix Committed = 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/1262641

Title:
  virsh save and virsh managedsave failed with cpu mode = host-
  passthrough

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/1262641/+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 1246236] Re: pxe boot from maas fails due to time out

2015-04-08 Thread Mike Pontillo
I hit this problem today, and it turned out to be a non-MAAS bug.

I was trying to configure a Trusty host with VMware Workstation *and*
LXCs sharing the same network.

It turns out that the combination of VMware plus Linux bridge interfaces
have a bug: if I set up the VM network to be bridged to br0, I can ping
hosts on the local network, and I can ping the Linux hypervisor, and I
can ping any of the LXCs. I can even DHCP from the LXCs. But I *can't*
establish any TCP connections to the LXCs from the VMware guest.

My current theory is that somehow the bridge interface is causing
packets sentto the LXC from the VMware guest to be discarded at a low
level, rather than sent up the stack. I couldn't find any IP Because
when I configure VMware to bridge to a physical interface rather than a
virtual bridge, it works. Until I disconnect the physical interface.

So the bottom line for me was:
(1) Have VMware bridge to the physical interface (in my case, it was eth0.100, 
a VLAN interface) if you want to use bridged mode
(2) Use a host-only network (without DHCP, so MAAS can do its thing!) if you 
want to develop in isolation, without sharing the network with the local LAN
 - Do NOT bridge VMware to a bridge created with 'brctl' or similar!

I added the VMware bridge interface (vmnet1) to the br0 interface I'm
using for my MAAS LXC, which may get me the best of both. I'll continue
to test this configuration.

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

Title:
  pxe boot from maas fails due to time out

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1246236/+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 1081509] Re: freeradius + mysql fails to start

2015-04-08 Thread Punyal
There is a simple solution, just delay the booting of freeradius.

edit the file /etc/rc2.d/S99radiusd and add a delay of 5 seconds at the
beggining.

#delay of 5 secs
sleep 5

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

Title:
  freeradius + mysql fails to start

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

2015-04-08 Thread ñull
Just to confirm this is not isolated to Ubuntu or php5-curl. Yesterday I 
de-installed php5-ffmpeg in Debian and Apache  was not restarted either.
 May be (de-)install script should check if mod_php is active and only then 
restart Apache?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is a bug assignee.
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 1441273] Re: Unity Samba WINS NETBIOS

2015-04-08 Thread Zeth
** Package changed: ubuntu = samba (Ubuntu)

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

Title:
  Unity Samba WINS NETBIOS

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

2015-04-08 Thread James Page
Verfied alongside the recent icehouse 2014.1 point release.

** 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 ceph in Ubuntu.
https://bugs.launchpad.net/bugs/1413917

Title:
  [SRU] 0.80.9 point release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/1413917/+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 1435709] Re: mysql.service fail to start after upgrade to mysql-server.5.6

2015-04-08 Thread Luis Mondesi
Also, note that I had to add return 0 to the pinger() function:

/usr/share/mysql/mysql-systemd-start

Maybe this function should be written in a way that it provides
feedback:

pinger () {
  while /bin/true ; do
sleep 1
mysqladmin ping /dev/null 21  break
logger -p daemon.info $0 sleeping for 1 second...
  done
}

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

Title:
  mysql.service fail to start after upgrade to mysql-server.5.6

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.6/+bug/1435709/+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 1425376] Re: Ubuntu Core provides no console login prompt if network is unavailable

2015-04-08 Thread Steve Langasek
Confirmed that the systemd fixes have the correct effect in the latest
devel-proposed version.  Thanks, Martin!  Now we just need the cloud-
init changes.

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

Title:
  Ubuntu Core provides no console login prompt if network is unavailable

To manage notifications about this bug go to:
https://bugs.launchpad.net/snappy-ubuntu/+bug/1425376/+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 1434428] Re: add cups/printer.conf* to .gitignore?

2015-04-08 Thread Vicky Dahlke
Actually it is 
cups/printers.conf
cups/printers.conf.O
(with s).

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

Title:
  add cups/printer.conf* to .gitignore?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/etckeeper/+bug/1434428/+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 1441761] [NEW] package slapd 2.4.31-1+nmu2ubuntu8 [modified: usr/sbin/slapd usr/share/slapd/DB_CONFIG] failed to install/upgrade: subprocess installed post-installation script returned error exit

2015-04-08 Thread Dave Mewis
Public bug reported:

apt-get update  apt-get dist-upgrade faults with ldap olcModuleList

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: slapd 2.4.31-1+nmu2ubuntu8 [modified: usr/sbin/slapd 
usr/share/slapd/DB_CONFIG]
ProcVersionSignature: Ubuntu 3.13.0-49.81-generic 3.13.11-ckt17
Uname: Linux 3.13.0-49-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.8
AptOrdering: slapd: Configure
Architecture: amd64
Date: Fri Apr  3 12:00:12 2015
DuplicateSignature: package:slapd:2.4.31-1+nmu2ubuntu8 [modified: 
usr/sbin/slapd usr/share/slapd/DB_CONFIG]:subprocess installed 
post-installation script returned error exit status 1
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2015-03-14 (25 days ago)
InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
SourcePackage: openldap
Title: package slapd 2.4.31-1+nmu2ubuntu8 [modified: usr/sbin/slapd 
usr/share/slapd/DB_CONFIG] failed to install/upgrade: subprocess installed 
post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)
mtime.conffile..etc.default.slapd: 2015-04-06T16:52:37.845752
mtime.conffile..etc.init.d.slapd: 2015-03-27T18:11:50.362937

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


** Tags: amd64 apport-package trusty

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

Title:
  package slapd 2.4.31-1+nmu2ubuntu8 [modified: usr/sbin/slapd
  usr/share/slapd/DB_CONFIG] failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openldap/+bug/1441761/+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 1441761] Re: package slapd 2.4.31-1+nmu2ubuntu8 [modified: usr/sbin/slapd usr/share/slapd/DB_CONFIG] failed to install/upgrade: subprocess installed post-installation script returned error exit s

2015-04-08 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package slapd 2.4.31-1+nmu2ubuntu8 [modified: usr/sbin/slapd
  usr/share/slapd/DB_CONFIG] failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openldap/+bug/1441761/+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 1103353] Re: Invalid GnuTLS cipher suite strings causes libldap to crash

2015-04-08 Thread Oleg Strikov
Hi Harry,

Thanks for the input.
Could you add more information on this please:
 silently switch from a slapd that used openssl to gnutls
I just looked through the launchpad package archive and it looks like we never 
had openldap linked against openssl in 12.04 and 14.04. First version of 
openldap which showed up in 12.04 was 2.4.25 and it has libgnutls-dev in build 
dependencies. Do you mean upgrading from any previous release to precise/trusty?

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

Title:
  Invalid GnuTLS cipher suite strings causes libldap to crash

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openldap/+bug/1103353/+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 1355813] Re: Interface MTU management across MAAS/juju

2015-04-08 Thread Andres Rodriguez
** Changed in: maas
   Importance: Undecided = Wishlist

** Changed in: maas
   Status: New = Triaged

** Changed in: maas
Milestone: None = 1.8.0

** Changed in: maas
Milestone: 1.8.0 = next

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

Title:
  Interface MTU management across MAAS/juju

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1355813/+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 1441616] Re: update of cloud-init during first boot causes cloud-init to stop

2015-04-08 Thread Scott Moser
*** This bug is a duplicate of bug 1438520 ***
https://bugs.launchpad.net/bugs/1438520

** This bug has been marked a duplicate of bug 1438520
   cloud-init on vivid upgrade causes sigterm, which aborts 'runcmd' execution

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

Title:
  update of cloud-init during first boot causes cloud-init to stop

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1441616/+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 1441616] [NEW] update of cloud-init during first boot causes cloud-init to stop

2015-04-08 Thread James Page
Public bug reported:

From server console-log output:

[   62.515549] cloud-init[845]: Unpacking linux-headers-generic (3.19.0.12.11) 
over (3.19.0.11.10) ...
[   62.536093] cloud-init[845]: Preparing to unpack .../patch_2.7.5-1_amd64.deb 
...
[   62.538141] cloud-init[845]: Unpacking patch (2.7.5-1) over (2.7.4-2) ...
[   62.573202] cloud-init[845]: Preparing to unpack 
.../cloud-init_0.7.7~bzr1088-0ubuntu2_all.deb ...
[[32m  OK  [0m] Stopped Execute cloud user/final scripts.
[[32m  OK  [0m] Stopped target Cloud-config availability.
Cloud-init 0.7.7 received SIGTERM, exiting...
  Filename: /usr/lib/python3.4/subprocess.py
  Function: _eintr_retry_call
  Line number: 491
Filename: /usr/lib/python3.4/subprocess.py
Function: _try_wait
Line number: 1514
  Filename: /usr/lib/python3.4/subprocess.py
  Function: wait
  Line number: 1566
[[32m  OK  [0m] Stopped Apply the settings specified in cloud-config.

cloud-init stops processing after this exception, resulting in failed
juju deployments on vivid.

From most recent daily images.

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: cloud-init 0.7.7~bzr1088-0ubuntu2
ProcVersionSignature: User Name 3.19.0-11.11-generic 3.19.3
Uname: Linux 3.19.0-11-generic x86_64
ApportVersion: 2.17-0ubuntu1
Architecture: amd64
Date: Wed Apr  8 12:53:32 2015
Ec2AMI: ami-02ac
Ec2AMIManifest: FIXME
Ec2AvailabilityZone: nova
Ec2InstanceType: m1.small.osci
Ec2Kernel: aki-0002
Ec2Ramdisk: ari-0002
PackageArchitecture: all
SourcePackage: cloud-init
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug ec2-images vivid

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

Title:
  update of cloud-init during first boot causes cloud-init to stop

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1441616/+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 1424639] Re: [FFE] eventlet 0.17.1

2015-04-08 Thread Scott Kitterman
Go for it.

** Changed in: python-eventlet (Ubuntu)
   Status: New = Triaged

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

Title:
  [FFE] eventlet 0.17.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-eventlet/+bug/1424639/+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 1427275] Re: clean cloud images of python2

2015-04-08 Thread Scott Moser
** Also affects: vim (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: vim (Ubuntu Vivid)
   Status: New = Confirmed

** Changed in: vim (Ubuntu Vivid)
   Importance: Undecided = High

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

Title:
  clean cloud images of python2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-utils/+bug/1427275/+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 1435709] Re: mysql.service fail to start after upgrade to mysql-server.5.6

2015-04-08 Thread Luis Mondesi
Any workarounds for this?

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

Title:
  mysql.service fail to start after upgrade to mysql-server.5.6

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.6/+bug/1435709/+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 1440948] Re: qemu-img: symbol lookup error: qemu-img: undefined symbol: rbd_aio_discard

2015-04-08 Thread Ryan Beisner
** Description changed:

- On Precise:
+ On Trusty:
  
  $ qemu-img --help
  qemu-img: symbol lookup error: qemu-img: undefined symbol: rbd_aio_discard
  
  $ qemu-img
  qemu-img: symbol lookup error: qemu-img: undefined symbol: rbd_aio_discard
  
  $ dpkg-query --show qemu-utils
  qemu-utils  2.0.0+dfsg-2ubuntu1.6~cloud0
  
  Workaround:
  $ sudo apt-get install librbd1
  
  Then qemu-img works.
  
  cinder (next and stable) charm amulet tests fail with:  vol create
  failed - from glance img
  
  juju-test.conductor.14-basic-precise-icehouse DEBUG   : vol create
  failed - from glance img: id:f3fcd8fb-4ecd-46a7-bde1-0d83ac0166c8
  stat:error boot:false
  
  next:  revno 82
  stable:  revno 73

** Description changed:

- On Trusty:
+ On Precise or Trusty:
  
  $ qemu-img --help
  qemu-img: symbol lookup error: qemu-img: undefined symbol: rbd_aio_discard
  
  $ qemu-img
  qemu-img: symbol lookup error: qemu-img: undefined symbol: rbd_aio_discard
  
  $ dpkg-query --show qemu-utils
  qemu-utils  2.0.0+dfsg-2ubuntu1.6~cloud0
  
  Workaround:
  $ sudo apt-get install librbd1
  
  Then qemu-img works.
  
  cinder (next and stable) charm amulet tests fail with:  vol create
  failed - from glance img
  
  juju-test.conductor.14-basic-precise-icehouse DEBUG   : vol create
  failed - from glance img: id:f3fcd8fb-4ecd-46a7-bde1-0d83ac0166c8
  stat:error boot:false
  
  next:  revno 82
  stable:  revno 73

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

Title:
  qemu-img: symbol lookup error: qemu-img: undefined symbol:
  rbd_aio_discard

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1440948/+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 1434428] Re: add cups/printer.conf* to .gitignore?

2015-04-08 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  add cups/printer.conf* to .gitignore?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/etckeeper/+bug/1434428/+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 1408088] Re: not able to upload binary files when booting a vm

2015-04-08 Thread Liang Chen
patch for ubuntu archive

** Patch added: python-novaclient_2.17.0-lp1408088.patch
   
https://bugs.launchpad.net/python-novaclient/+bug/1408088/+attachment/4369708/+files/python-novaclient_2.17.0-lp1408088.patch

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

Title:
  not able to upload binary files when booting a vm

To manage notifications about this bug go to:
https://bugs.launchpad.net/python-novaclient/+bug/1408088/+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 1435709] Re: mysql.service fail to start after upgrade to mysql-server.5.6

2015-04-08 Thread Luis Mondesi
The new options are:

$ cat /etc/mysql/my.cnf|grep slow
slow_query_log = 1
slow_query_log_file = /var/log/mysql/mysql-slow.log

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

Title:
  mysql.service fail to start after upgrade to mysql-server.5.6

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.6/+bug/1435709/+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 1435709] Re: mysql.service fail to start after upgrade to mysql-server.5.6

2015-04-08 Thread Luis Mondesi
Ok, I made it work. From /var/log/mysql/error.log:

2015-04-08 11:37:13 1441 [ERROR] /usr/sbin/mysqld: unknown variable 
'log_slow_queries=/var/log/mysql/mysql-slow.log'
2015-04-08 11:37:13 1441 [ERROR] Aborting

2015-04-08 11:37:13 1441 [Note] Binlog end


After commenting out this line, it works:

$ cat /etc/mysql/my.cnf|grep log_slow
#log_slow_queries   = /var/log/mysql/mysql-slow.log

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

Title:
  mysql.service fail to start after upgrade to mysql-server.5.6

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

2015-04-08 Thread Corey Bryant
** 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 nova in Ubuntu.
https://bugs.launchpad.net/bugs/1432608

Title:
  [SRU] icehouse 2014.1.4 point release

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

2015-04-08 Thread Launchpad Bug Tracker
This bug was fixed in the package ceph - 0.80.9-0ubuntu0.14.10.1

---
ceph (0.80.9-0ubuntu0.14.10.1) utopic; urgency=medium

  [ James Page ]
  * New upstream stable point release (LP: #1413917).

  [ Dave Chiluk ]
  * Increase file limit to prevent hitting the file limit on large
installations (LP: #1420647)
 -- James Page james.p...@ubuntu.com   Wed, 11 Mar 2015 09:16:00 +

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

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

Title:
  [SRU] 0.80.9 point release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/1413917/+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 1420647] Re: Please apply nofile limit fix of ceph-osd to trusty, utopic

2015-04-08 Thread Launchpad Bug Tracker
This bug was fixed in the package ceph - 0.80.9-0ubuntu0.14.04.1

---
ceph (0.80.9-0ubuntu0.14.04.1) trusty; urgency=medium

  [ James Page ]
  * New upstream stable point release (LP: #1413917).

  [ Dave Chiluk ]
  * Increase file limit to prevent hitting the file limit on large
installations (LP: #1420647)
 -- James Page james.p...@ubuntu.com   Wed, 11 Mar 2015 09:14:35 +

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

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

Title:
  Please apply nofile limit fix of ceph-osd to trusty, utopic

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/1420647/+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 1420647] Update Released

2015-04-08 Thread Chris J Arges
The verification of the Stable Release Update for ceph has completed
successfully and the package has now been released to -updates.
Subsequently, the Ubuntu Stable Release Updates Team is being
unsubscribed and will not receive messages about this bug report.  In
the event that you encounter a regression using the package from
-updates please report a new bug using ubuntu-bug and tag the bug report
regression-update so we can easily find any regressions.

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

Title:
  Please apply nofile limit fix of ceph-osd to trusty, utopic

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/1420647/+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 1420647] Re: Please apply nofile limit fix of ceph-osd to trusty, utopic

2015-04-08 Thread Launchpad Bug Tracker
This bug was fixed in the package ceph - 0.80.9-0ubuntu0.14.10.1

---
ceph (0.80.9-0ubuntu0.14.10.1) utopic; urgency=medium

  [ James Page ]
  * New upstream stable point release (LP: #1413917).

  [ Dave Chiluk ]
  * Increase file limit to prevent hitting the file limit on large
installations (LP: #1420647)
 -- James Page james.p...@ubuntu.com   Wed, 11 Mar 2015 09:16:00 +

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

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

Title:
  Please apply nofile limit fix of ceph-osd to trusty, utopic

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

2015-04-08 Thread Launchpad Bug Tracker
This bug was fixed in the package ceph - 0.80.9-0ubuntu0.14.04.1

---
ceph (0.80.9-0ubuntu0.14.04.1) trusty; urgency=medium

  [ James Page ]
  * New upstream stable point release (LP: #1413917).

  [ Dave Chiluk ]
  * Increase file limit to prevent hitting the file limit on large
installations (LP: #1420647)
 -- James Page james.p...@ubuntu.com   Wed, 11 Mar 2015 09:14:35 +

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

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

Title:
  [SRU] 0.80.9 point release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/1413917/+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 1413917] Update Released

2015-04-08 Thread Chris J Arges
The verification of the Stable Release Update for ceph has completed
successfully and the package has now been released to -updates.
Subsequently, the Ubuntu Stable Release Updates Team is being
unsubscribed and will not receive messages about this bug report.  In
the event that you encounter a regression using the package from
-updates please report a new bug using ubuntu-bug and tag the bug report
regression-update so we can easily find any regressions.

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

Title:
  [SRU] 0.80.9 point release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/1413917/+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 1438730] Re: libvirt-lxc container start failed in 15.04 (Message did not receive a reply (timeout by message bus))

2015-04-08 Thread Launchpad Bug Tracker
This bug was fixed in the package libvirt - 1.2.12-0ubuntu10

---
libvirt (1.2.12-0ubuntu10) vivid; urgency=medium

  * Fix previous patch to ignore any abstract unix domain sockets
  * Update the cgmanager patch so that container start and stop work under
systemd.  (LP: #1438730)  In 15.10 we will drop the cgmanager patch(es).
 -- Serge Hallyn serge.hal...@ubuntu.com   Wed, 08 Apr 2015 10:58:04 -0500

** Changed in: libvirt (Ubuntu)
   Status: Confirmed = 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/1438730

Title:
  libvirt-lxc container start failed in 15.04 (Message did not receive a
  reply (timeout by message bus))

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/1438730/+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 1044559] Re: apt-get remove maas --purge while maas is running prevents full database purge

2015-04-08 Thread Andres Rodriguez
** Changed in: maas
   Status: Triaged = Fix Committed

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

Title:
  apt-get remove maas --purge while maas is running prevents full
  database purge

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1044559/+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 1423601] Re: [FFe] ceph 0.93 - hammer release

2015-04-08 Thread Launchpad Bug Tracker
This bug was fixed in the package ceph - 0.94-0ubuntu1

---
ceph (0.94-0ubuntu1) vivid; urgency=low

  * New upstream stable release 'Hammer' (LP: #1423601):
- d/p/*: Refresh.
- d/*.symbols: Update inline with upstream additions, use regex
  for ceph version symbol.
 -- James Page james.p...@ubuntu.com   Wed, 08 Apr 2015 18:57:08 +0100

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

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

Title:
  [FFe] ceph 0.93 - hammer release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/1423601/+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 1403730] Re: Add support for OpenVZ simfs

2015-04-08 Thread StartledPhoenix
Patch based on
https://bugzilla.redhat.com/attachment.cgi?id=619864action=diff

Tested with Trusty, and detects simfs root (/) after application.

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

Title:
  Add support for OpenVZ simfs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/net-snmp/+bug/1403730/+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 1403730] Re: Add support for OpenVZ simfs

2015-04-08 Thread StartledPhoenix
simfs detection patch

** Patch added: fix_simfs_detect.patch
   
https://bugs.launchpad.net/ubuntu/+source/net-snmp/+bug/1403730/+attachment/4370006/+files/fix_simfs_detect.patch

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

Title:
  Add support for OpenVZ simfs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/net-snmp/+bug/1403730/+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 1441070] Re: lxc-start on default vivid container fails on apparmor violation

2015-04-08 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  lxc-start on default vivid container fails on apparmor violation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1441070/+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 1273197] Re: maas-cluster-controller does not update pserv.yaml when dpkg-reconfigure is run

2015-04-08 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/vivid-proposed/maas

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

Title:
  maas-cluster-controller does not update pserv.yaml when dpkg-
  reconfigure is run

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1273197/+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 1276253] Re: get_data of DataSourceConfigDrive raised 'network-interfaces' no instance data found in start-local

2015-04-08 Thread Jin Dong
I have the same problem with precise cloudimg on Openstack Icehouse with
config drive.

# update interfaces and ifup only on the local datasource
# this way the DataSourceConfigDriveNet doesn't do it also.
if 'network_config' in results and self.dsmode == local:
LOG.debug(Updating network interfaces from config drive (%s),
  dsmode)

util.write_file(/etc/network/interfaces,
md['network-interfaces'])

In 'get_data',  this two lines above should be changed to

util.write_file(/etc/network/interfaces,
results['network_config']) 

This seems to be a bug in the backport of config drive v2 support in
0.6.3-0ubuntu1.5.

http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/precise/cloud-init
/precise-updates/revision/194#cloudinit/DataSourceConfigDrive.py

** Changed in: cloud-init (Ubuntu)
   Status: Invalid = Confirmed

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

Title:
  get_data of DataSourceConfigDrive raised 'network-interfaces' no
  instance data found in start-local

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cloud-init/+bug/1276253/+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 1441070] Re: lxc-start on default vivid container fails on apparmor violation

2015-04-08 Thread Stéphane Graber
You don't appear to have lxcfs running.

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

Title:
  lxc-start on default vivid container fails on apparmor violation

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1441070/+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 1273197] Re: maas-cluster-controller does not update pserv.yaml when dpkg-reconfigure is run

2015-04-08 Thread Andres Rodriguez
** Changed in: maas
   Status: Confirmed = Fix Committed

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

Title:
  maas-cluster-controller does not update pserv.yaml when dpkg-
  reconfigure is run

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1273197/+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 1434684] Re: Pacemaker is not started and stopped automatically with Corosync

2015-04-08 Thread Gui||aume
Same problem here. temporarily fix with this :

service pacemaker start
update-rc.d pacemaker defaults

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

Title:
  Pacemaker is not started and stopped automatically with Corosync

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/corosync/+bug/1434684/+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 1441930] Re: Fix handling of multipathed disks with 4k-sectors

2015-04-08 Thread Mauricio Faria de Oliveira
** Patch added: parted_non512Bsectors.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/multipath-tools/+bug/1441930/+attachment/4369970/+files/parted_non512Bsectors.debdiff

** Tags added: patch

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

Title:
  Fix handling of multipathed disks with 4k-sectors

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/multipath-tools/+bug/1441930/+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 1441930] Re: Fix handling of multipathed disks with 4k-sectors

2015-04-08 Thread Mauricio Faria de Oliveira
** Attachment added: Some instructions to reproduce the bug / test the patched 
packages to fix it
   
https://bugs.launchpad.net/ubuntu/+source/multipath-tools/+bug/1441930/+attachment/4369971/+files/Steps%20to%20Reproduce.txt

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

Title:
  Fix handling of multipathed disks with 4k-sectors

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/multipath-tools/+bug/1441930/+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 1441930] [NEW] Fix handling of multipathed disks with 4k-sectors

2015-04-08 Thread Mauricio Faria de Oliveira
Public bug reported:

The packages for libparted and kpartx don't have the patches for using
device-mapper (multipath/LVM) on 4k-sector disks (generally: 'non
512-byte sector disks')

This causes the number of sectors of each device-mapper partition to be 1/8th 
(512/4096) of that expected.
These 3 errors were identified:
1) Partition sizes on multipath/LVM are 1/8th of the intended size 
2) The filesystem on the underlying device is not-accessible (only in the dm 
mapped device)
3) grub-install fails w/ 'Unknown filesystem'

The 2 patches attached contains upstream patches from parted and
multipath-tools, and fix the issues (the installation finishes without
errors and the system boots).

** Affects: multipath-tools (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: patch

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

Title:
  Fix handling of multipathed disks with 4k-sectors

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/multipath-tools/+bug/1441930/+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 1441930] Re: Fix handling of multipathed disks with 4k-sectors

2015-04-08 Thread Mauricio Faria de Oliveira
** Patch added: multipath-tools_non512Bsectors.debdiff
   
https://bugs.launchpad.net/ubuntu/+source/multipath-tools/+bug/1441930/+attachment/4369969/+files/multipath-tools_non512Bsectors.debdiff

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

Title:
  Fix handling of multipathed disks with 4k-sectors

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/multipath-tools/+bug/1441930/+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 1440948] Re: qemu-img: symbol lookup error: qemu-img: undefined symbol: rbd_aio_discard

2015-04-08 Thread Ryan Beisner
** Branch unlinked: lp:~1chb1n/charms/trusty/cinder/volume-from-image

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

Title:
  qemu-img: symbol lookup error: qemu-img: undefined symbol:
  rbd_aio_discard

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qemu-kvm/+bug/1440948/+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 1426236] Re: package bind9 1:9.9.5.dfsg-3ubuntu0.2 [modified: usr/bin/bind9-config usr/sbin/arpaname usr/sbin/ddns-confgen usr/sbin/dnssec-importkey usr/sbin/genrandom usr/sbin/isc-hmac-fixup usr

2015-04-08 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  package bind9 1:9.9.5.dfsg-3ubuntu0.2 [modified: usr/bin/bind9-config
  usr/sbin/arpaname usr/sbin/ddns-confgen usr/sbin/dnssec-importkey
  usr/sbin/genrandom usr/sbin/isc-hmac-fixup usr/sbin/named usr/sbin
  /named-journalprint usr/sbin/nsec3hash] failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bind9/+bug/1426236/+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 1403730] Re: Add support for OpenVZ simfs

2015-04-08 Thread Ubuntu Foundations Team Bug Bot
The attachment fix_simfs_detect.patch seems to be a patch.  If it
isn't, please remove the patch flag from the attachment, remove the
patch tag, and if you are a member of the ~ubuntu-reviewers,
unsubscribe the team.

[This is an automated message performed by a Launchpad user owned by
~brian-murray, for any issues please contact him.]

** Tags added: patch

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

Title:
  Add support for OpenVZ simfs

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/net-snmp/+bug/1403730/+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 1441930] Re: Fix handling of multipathed disks with 4k-sectors

2015-04-08 Thread Ubuntu Foundations Team Bug Bot
The attachment multipath-tools_non512Bsectors.debdiff seems to be a
debdiff.  The ubuntu-sponsors team has been subscribed to the bug report
so that they can review and hopefully sponsor the debdiff.  If the
attachment isn't a patch, please remove the patch flag from the
attachment, remove the patch tag, and if you are member of the
~ubuntu-sponsors, unsubscribe the team.

[This is an automated message performed by a Launchpad user owned by
~brian-murray, for any issue please contact him.]

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

Title:
  Fix handling of multipathed disks with 4k-sectors

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