[Bug 1496223] Re: squid3 FTBFS due to linux-libc-dev and libc6-dev headers mismatch

2015-10-01 Thread Matthias Klose
the preferred approach would be to finally merge squid3 after more than
three years.

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

Title:
  squid3 FTBFS due to linux-libc-dev and libc6-dev headers mismatch

To manage notifications about this bug go to:
https://bugs.launchpad.net/squid/+bug/1496223/+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-10-01 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 
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 

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(, , '\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();
@@ -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(, , '\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

--- Comment From amda...@us.ibm.com 2015-06-01 20:02 EDT---
Has this patch been accepted by maintainers?   The Canonical status is fix 
released.  Is there a fix that should be pulled and tested?

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

[Bug 1501491] Re: Unable to start containers after upgrade to 1.0.7-0ubuntu0.6 on trusty

2015-10-01 Thread Steve Beattie
Packages to address the issue in lxc are currently building in the
ubuntu-security-proposed ppa: https://launchpad.net/~ubuntu-security-
proposed/+archive/ubuntu/ppa/ ; please test these when they complete to
verify that there aren't any additional regressions that have cropped up
in this update. Thanks for your patience!

** Changed in: lxc (Ubuntu)
   Importance: Undecided => High

** Changed in: lxc (Ubuntu)
   Status: New => In Progress

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

Title:
  Unable to start containers after upgrade to 1.0.7-0ubuntu0.6 on trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1501491/+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 1496223] Re: squid3 FTBFS due to linux-libc-dev and libc6-dev headers mismatch

2015-10-01 Thread Ubuntu Foundations Team Bug Bot
** Tags added: patch

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

Title:
  squid3 FTBFS due to linux-libc-dev and libc6-dev headers mismatch

To manage notifications about this bug go to:
https://bugs.launchpad.net/squid/+bug/1496223/+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 1501644] [NEW] package squid3 3.3.8-1ubuntu14 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2015-10-01 Thread Youssef El Kayyal
Public bug reported:

I had a version of squi, not old though, but i downloaded some config files 
from somewhere i dont remember, then now i wanted to use pure squid 
installation, i had to remove the old squid using: (as root)  apt-get purge 
squid
and rm -R /etc/squid3...
which in return removed my downloaded files. Ok, now i tried to re-install 
squid using : (as root) apt-get install squid. i left for like 15 minutes came 
back and saw the error. No tools or apps or browser were used in the time 
between removing and reinstalling squid, i removed and then quickly reinstall, 
i didnt restart, i didnt use applications or anything before removing squid, 
not even while installing it. I hope i helped.

ProblemType: Package
DistroRelease: Ubuntu 15.04
Package: squid3 3.3.8-1ubuntu14
ProcVersionSignature: Ubuntu 3.19.0-15.15-generic 3.19.3
Uname: Linux 3.19.0-15-generic x86_64
ApportVersion: 2.17.2-0ubuntu1
Architecture: amd64
Date: Thu Oct  1 10:29:51 2015
DuplicateSignature: package:squid3:3.3.8-1ubuntu14:subprocess installed 
post-installation script returned error exit status 2
ErrorMessage: subprocess installed post-installation script returned error exit 
status 2
InstallationDate: Installed on 2015-09-14 (16 days ago)
InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
RelatedPackageVersions:
 dpkg 1.17.25ubuntu1
 apt  1.0.9.7ubuntu4
SourcePackage: squid3
Title: package squid3 3.3.8-1ubuntu14 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 2
UpgradeStatus: No upgrade log present (probably fresh install)
modified.conffile..etc.squid3.errorpage.css: [deleted]
modified.conffile..etc.squid3.msntauth.conf: [deleted]
modified.conffile..etc.squid3.squid.conf: [deleted]

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


** Tags: amd64 apport-package vivid

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

Title:
  package squid3 3.3.8-1ubuntu14 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/squid3/+bug/1501644/+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 1501703] Re: unit test failures on 32 bit architectures

2015-10-01 Thread James Page
** Also affects: neutron (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: neutron
 Assignee: (unassigned) => James Page (james-page)

** Changed in: neutron
   Status: New => In Progress

** Changed in: neutron (Ubuntu)
 Assignee: (unassigned) => James Page (james-page)

** Changed in: neutron (Ubuntu)
   Importance: Undecided => High

** Changed in: neutron (Ubuntu)
   Status: New => In Progress

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

Title:
  unit test failures on 32 bit architectures

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1501703/+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 1501491] Re: Unable to start containers after upgrade to 1.0.7-0ubuntu0.6 on trusty

2015-10-01 Thread Stephen
I loaded this on my system and both cases that failed before pass. No other
issues seen.

On Thu, Oct 1, 2015 at 3:15 AM Steve Beattie 
wrote:

> Packages to address the issue in lxc are currently building in the
> ubuntu-security-proposed ppa: https://launchpad.net/~ubuntu-security-
> proposed/+archive/ubuntu/ppa/
>  ;
> please test these when they complete to
> verify that there aren't any additional regressions that have cropped up
> in this update. Thanks for your patience!
>
> ** Changed in: lxc (Ubuntu)
>Importance: Undecided => High
>
> ** Changed in: lxc (Ubuntu)
>Status: New => In Progress
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1501491
>
> Title:
>   Unable to start containers after upgrade to 1.0.7-0ubuntu0.6 on trusty
>
> Status in lxc package in Ubuntu:
>   In Progress
>
> Bug description:
>   A partial fix was made for 1501310 - this case still fails.
>
>   /home/ubuntu/nzos/volumes/1.0.0/common/shared
>   /var/lib/lxc/0002/rootfs/nzos/./__shared__ none ro,bind 0 0
>
>   This line is giving the same error. With 1.0.7-0ubuntu0.6 installed.
>
>   lxc-start: utils.c: ensure_not_symlink: 1398 Mount onto
>   /usr/lib/x86_64-linux-gnu/lxc//nzos/./__shared__ resulted in
>   /usr/lib/x86_64-linux-gnu/lxc/nzos/__shared__
>
>   lxc-start: utils.c: safe_mount: 1423 Mount of
> '/home/ubuntu/nzos/volumes/1.0.0/common/shared' onto
> '/usr/lib/x86_64-linux-gnu/lxc//nzos/./__shared__' was onto a symlink!
>   lxc-start: conf.c: mount_entry: 2051 No such file or directory - failed
> to mount '/home/ubuntu/nzos/volumes/1.0.0/common/shared' on
> '/usr/lib/x86_64-linux-gnu/lxc//nzos/./__shared__'
>   lxc-start: conf.c: lxc_setup: 4160 failed to setup the mounts for '0002'
>   lxc-start: start.c: do_start: 688 failed to setup the container
>   lxc-start: sync.c: __sync_wait: 51 invalid sequence number 1. expected 2
>   lxc-start: start.c: __lxc_start: 1080 failed to spawn '0002'
>   lxc-start: lxc_start.c: main: 342 The container failed to start.
>   lxc-start: lxc_start.c: main: 346 Additional information can be obtained
> by setting the --logfile and --logpriority options.
>
>   lsb_release -a
>   No LSB modules are available.
>   Distributor ID:   Ubuntu
>   Description:  Ubuntu 14.04.2 LTS
>   Release:  14.04
>   Codename: trusty
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1501491/+subscriptions
>

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

Title:
  Unable to start containers after upgrade to 1.0.7-0ubuntu0.6 on trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1501491/+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 1501491] Re: Unable to start containers after upgrade to 1.0.7-0ubuntu0.6 on trusty

2015-10-01 Thread Stephen
I loaded the propsed fix on my system and both cases that failed before
pass. No other issues seen.

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

Title:
  Unable to start containers after upgrade to 1.0.7-0ubuntu0.6 on trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1501491/+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 1501703] Fix proposed to neutron (master)

2015-10-01 Thread OpenStack Infra
Fix proposed to branch: master
Review: https://review.openstack.org/229819

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

Title:
  unit test failures on 32 bit architectures

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1501703/+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 1477174] Re: [SRU] 0.80.10 stable release

2015-10-01 Thread James Page
This got marked verification-needed due to the inclusion of the
changelog entries in the next SRU through the stable update queue.

** 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/1477174

Title:
  [SRU] 0.80.10 stable release

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/1477174/+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 1501703] Re: unit test failures on 32 bit architectures

2015-10-01 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/wily-proposed/neutron

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

Title:
  unit test failures on 32 bit architectures

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1501703/+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 1501687] [NEW] package spamassassin 3.4.0-6 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2015-10-01 Thread emare
Public bug reported:

HELP :-(

ProblemType: Package
DistroRelease: Ubuntu 15.04
Package: spamassassin 3.4.0-6
ProcVersionSignature: Ubuntu 3.16.0-30.40-generic 3.16.7-ckt3
Uname: Linux 3.16.0-30-generic x86_64
ApportVersion: 2.17.2-0ubuntu1.5
Architecture: amd64
Date: Thu Oct  1 07:46:08 2015
DuplicateSignature: package:spamassassin:3.4.0-6:subprocess installed 
post-installation script returned error exit status 2
ErrorMessage: subprocess installed post-installation script returned error exit 
status 2
InstallationDate: Installed on 2014-01-11 (627 days ago)
InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 (20131016.1)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.17.25ubuntu1
 apt  1.0.9.7ubuntu4.2
SourcePackage: spamassassin
Title: package spamassassin 3.4.0-6 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 2
UpgradeStatus: Upgraded to vivid on 2015-09-11 (19 days ago)

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


** Tags: amd64 apport-package vivid

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

Title:
  package spamassassin 3.4.0-6 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/spamassassin/+bug/1501687/+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 1475247] Re: ceph-disk-prepare --zap-disk hang

2015-10-01 Thread James Page
As this has not regressed functionality, marking verification-done -
there may be other bugs, but there always are bugs...

** 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/1475247

Title:
  ceph-disk-prepare --zap-disk hang

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/1475247/+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 1470120] Re: [SRU] openvswitch 2.3.2

2015-10-01 Thread James Page
** 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 openvswitch in Ubuntu.
https://bugs.launchpad.net/bugs/1470120

Title:
  [SRU] openvswitch 2.3.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openvswitch/+bug/1470120/+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 1501687] Re: package spamassassin 3.4.0-6 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2015-10-01 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 spamassassin in Ubuntu.
https://bugs.launchpad.net/bugs/1501687

Title:
  package spamassassin 3.4.0-6 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/spamassassin/+bug/1501687/+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 1484268] Re: MAAS not auto-detecting/auto-entering credentials for HP Proliant ML310E G8 V2 server

2015-10-01 Thread Andres Rodriguez
For the time being then, I'll be marking this bug as incomplete provided
it cannot be reproduced.

** Changed in: maas
   Status: New => Incomplete

** Changed in: maas (Ubuntu)
   Status: New => Incomplete

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

Title:
  MAAS not auto-detecting/auto-entering credentials for HP Proliant
  ML310E G8 V2 server

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1484268/+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 1501772] Re: Metadata proxy process errors with binary user_data

2015-10-01 Thread James Page
I'm just re-deploying the environment where I saw this issue - some
other bug reports for this error code would indicate that maybe the
unicode package is not installed.

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

Title:
  Metadata proxy process errors with binary user_data

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1501772/+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 1501772] Re: Metadata proxy process errors with binary user_data

2015-10-01 Thread James Page
Installing random unicode packages did not help.

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

Title:
  Metadata proxy process errors with binary user_data

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1501772/+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 1501772] [NEW] Metadata proxy process errors with binary user_data

2015-10-01 Thread James Page
Public bug reported:

Boot instances with binary user data content (rather than simple text)
is not happy right now:

2015-10-01 13:19:39.109 10854 DEBUG neutron.agent.metadata.namespace_proxy [-] 
{'date': 'Thu, 01 Oct 2015 13:19:39 GMT', 'status': '200', 'content-length': 
'979', 'content-type': 'text/plain; charset=UTF-8', 'content-location': 
u'http://169.254.169.254/openstack/2013-10-17/user_data'} _proxy_request 
/usr/lib/python2.7/dist-packages/neutron/agent/metadata/namespace_proxy.py:90
2015-10-01 13:19:39.109 10854 ERROR neutron.agent.metadata.namespace_proxy [-] 
Unexpected error.
2015-10-01 13:19:39.109 10854 ERROR neutron.agent.metadata.namespace_proxy 
Traceback (most recent call last):
2015-10-01 13:19:39.109 10854 ERROR neutron.agent.metadata.namespace_proxy   
File 
"/usr/lib/python2.7/dist-packages/neutron/agent/metadata/namespace_proxy.py", 
line 55, in __call__
2015-10-01 13:19:39.109 10854 ERROR neutron.agent.metadata.namespace_proxy 
req.body)
2015-10-01 13:19:39.109 10854 ERROR neutron.agent.metadata.namespace_proxy   
File 
"/usr/lib/python2.7/dist-packages/neutron/agent/metadata/namespace_proxy.py", 
line 91, in _proxy_request
2015-10-01 13:19:39.109 10854 ERROR neutron.agent.metadata.namespace_proxy 
LOG.debug(content)
2015-10-01 13:19:39.109 10854 ERROR neutron.agent.metadata.namespace_proxy   
File "/usr/lib/python2.7/logging/__init__.py", line 1437, in debug
2015-10-01 13:19:39.109 10854 ERROR neutron.agent.metadata.namespace_proxy 
msg, kwargs = self.process(msg, kwargs)
2015-10-01 13:19:39.109 10854 ERROR neutron.agent.metadata.namespace_proxy   
File "/usr/lib/python2.7/dist-packages/oslo_log/log.py", line 139, in process
2015-10-01 13:19:39.109 10854 ERROR neutron.agent.metadata.namespace_proxy 
msg = _ensure_unicode(msg)
2015-10-01 13:19:39.109 10854 ERROR neutron.agent.metadata.namespace_proxy   
File "/usr/lib/python2.7/dist-packages/oslo_log/log.py", line 113, in 
_ensure_unicode
2015-10-01 13:19:39.109 10854 ERROR neutron.agent.metadata.namespace_proxy 
errors='xmlcharrefreplace',
2015-10-01 13:19:39.109 10854 ERROR neutron.agent.metadata.namespace_proxy   
File "/usr/lib/python2.7/dist-packages/oslo_utils/encodeutils.py", line 43, in 
safe_decode
2015-10-01 13:19:39.109 10854 ERROR neutron.agent.metadata.namespace_proxy 
return text.decode(incoming, errors)
2015-10-01 13:19:39.109 10854 ERROR neutron.agent.metadata.namespace_proxy   
File "/usr/lib/python2.7/encodings/utf_8.py", line 16, in decode
2015-10-01 13:19:39.109 10854 ERROR neutron.agent.metadata.namespace_proxy 
return codecs.utf_8_decode(input, errors, True)
2015-10-01 13:19:39.109 10854 ERROR neutron.agent.metadata.namespace_proxy 
TypeError: don't know how to handle UnicodeDecodeError in error callback
2015-10-01 13:19:39.109 10854 ERROR neutron.agent.metadata.namespace_proxy
2015-10-01 13:19:39.112 10854 INFO neutron.wsgi [-] 192.168.21.15 - - 
[01/Oct/2015 13:19:39] "GET /openstack/2013-10-17/user_data HTTP/1.1" 500 343 
0.014536

This is thrown be the log call just prior to it being served back to the
instance.

ProblemType: Bug
DistroRelease: Ubuntu 15.10
Package: neutron-metadata-agent 2:7.0.0~b3-0ubuntu3
ProcVersionSignature: Ubuntu 4.2.0-11.13-generic 4.2.1
Uname: Linux 4.2.0-11-generic x86_64
ApportVersion: 2.19-0ubuntu1
Architecture: amd64
Date: Thu Oct  1 13:38:21 2015
Ec2AMI: ami-05ce
Ec2AMIManifest: FIXME
Ec2AvailabilityZone: nova
Ec2InstanceType: m1.small.osci
Ec2Kernel: None
Ec2Ramdisk: None
JournalErrors: -- No entries --
PackageArchitecture: all
SourcePackage: neutron
UpgradeStatus: No upgrade log present (probably fresh install)
mtime.conffile..etc.neutron.metadata.agent.ini: 2015-10-01T13:18:25.075633

** Affects: neutron
 Importance: Undecided
 Status: New

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


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

** Summary changed:

- Metadata proxy process fails to provide user_data
+ Metadata proxy process errors with binary user_data

** Also affects: neutron
   Importance: Undecided
   Status: New

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

Title:
  Metadata proxy process errors with binary user_data

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1501772/+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 1501772] Re: Metadata proxy process errors with binary user_data

2015-10-01 Thread Ihar Hrachyshka
I have a test case to reproduce it.

** Changed in: neutron
   Status: New => Confirmed

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

Title:
  Metadata proxy process errors with binary user_data

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1501772/+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 1486931] Re: [LTCTest][Opal][OP810] ipmitool 1.8.13-1ubuntu0.3 version is still not working for in-band HPM upgrade

2015-10-01 Thread Breno Leitão
Hi Chris,

Yes, the patch was originally attached to a fix released bug (1481780) , and I 
just attached it to this bug.
This is the original post. 
https://bugs.launchpad.net/ubuntu/+source/ipmitool/+bug/1481780/comments/16

I understand that the major commits that we are backporting are
c78911c730fb49c4c6c2b6ed32c01b17aa539946 and
23e9340b49c7f339762dda0c3d56a1db6ef6efb1 entitled "Add HPM.1 support"
and "HPM.2 long message support".

I am adding David, who created this patch, in this bug so he can add
more information about it.

By the way, what do you want in the debdiff? anything other than the
same patch plus an entry in the changelog? I can work on it.

Thanks
Breno

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

Title:
  [LTCTest][Opal][OP810] ipmitool 1.8.13-1ubuntu0.3 version is still not
  working for in-band HPM upgrade

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ipmitool/+bug/1486931/+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 1501772] Re: Metadata proxy process errors with binary user_data

2015-10-01 Thread Ihar Hrachyshka
** Changed in: neutron
 Assignee: (unassigned) => Ihar Hrachyshka (ihar-hrachyshka)

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

Title:
  Metadata proxy process errors with binary user_data

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1501772/+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 1496223] Re: squid3 FTBFS due to linux-libc-dev and libc6-dev headers mismatch

2015-10-01 Thread Tiago Stürmer Daitx
I agree that merging the new one is the best approach and rbasak was
already working in it, for this reason I was withholding my patches (at
the time they required -D_GLIBCXX_USE_CXX11_ABI=0 since I didn't have a
libecap2 compiled for gcc5).

I decided to publish my patches for 3.3.8 just in case we don't get it
in time and also because yadi said it was better to revert libecap at
this time [1] and to avoid duplicated work since sil200 also tried to
fix it.

As yadi also commented in [1], Squid 3.3 and 3.4 require libecap 0.20
(libecap2), only squid 3.5 works with libecap 1.0 (libecap3).

[1]
https://bugs.launchpad.net/ubuntu/+source/squid3/+bug/1496924/comments/7

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

Title:
  squid3 FTBFS due to linux-libc-dev and libc6-dev headers mismatch

To manage notifications about this bug go to:
https://bugs.launchpad.net/squid/+bug/1496223/+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 1501703] Re: unit test failures on 32 bit architectures

2015-10-01 Thread Armando Migliaccio
** Changed in: neutron
   Importance: Undecided => Low

** Changed in: neutron
Milestone: None => mitaka-1

** Tags added: liberty-rc-potential unittest

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

Title:
  unit test failures on 32 bit architectures

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1501703/+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 1493597] Re: [backport] open-vm-tools from 15.10 to 14.04/15.04

2015-10-01 Thread Ben Howard
Due to a report of potential data corruption, I am withdrawing this
backport request.

** Changed in: trusty-backports
   Status: New => Invalid

** Changed in: vivid-backports
   Status: New => Invalid

** Changed in: open-vm-tools (Ubuntu)
   Status: Fix Committed => Won't Fix

** Changed in: open-vm-tools (Ubuntu Trusty)
   Status: Fix Committed => Won't Fix

** Changed in: open-vm-tools (Ubuntu Vivid)
   Status: Fix Committed => Won't Fix

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

Title:
  [backport] open-vm-tools from 15.10 to 14.04/15.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/trusty-backports/+bug/1493597/+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 1501772] Re: Metadata proxy process errors with binary user_data

2015-10-01 Thread Kyle Mestery
** Tags added: liberty-rc-potential

** Changed in: neutron
   Importance: Undecided => High

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

Title:
  Metadata proxy process errors with binary user_data

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1501772/+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 1481780] Re: ipmitool 1.8.13 needs 2 patches for OpenPower systems

2015-10-01 Thread Breno Leitão
Let's consider this bug as fixed, and continue the discussion of the new
patch at https://bugs.launchpad.net/ubuntu/+source/ipmitool/+bug/1486931

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

Title:
  ipmitool 1.8.13 needs 2 patches for OpenPower systems

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ipmitool/+bug/1481780/+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 1500950] Re: [MIR] ryu

2015-10-01 Thread James Page
I'm proposing to address the py3 support next cycle; formencode needs a
version bump and I don't want to take the risk this late in cycle.

Re the ryu-bin package starting a service as root - looking at that now.

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

Title:
  [MIR] ryu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ryu/+bug/1500950/+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 1457517] Re: Unable to boot from volume when flavor disk too small

2015-10-01 Thread Serge Hallyn
Pushed the debdiff from comment #16 to New sru queue - thanks.

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

** Changed in: nova (Ubuntu)
   Importance: Undecided => High

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

Title:
  Unable to boot from volume when flavor disk too small

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1457517/+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 1427406] Re: data corruption on arm64 and ppc64el

2015-10-01 Thread Launchpad Bug Tracker
This bug was fixed in the package mariadb-10.0 -
10.0.20-0ubuntu0.15.04.1

---
mariadb-10.0 (10.0.20-0ubuntu0.15.04.1) vivid-security; urgency=low

  * SECURITY UPDATE: Update to 10.0.20 (via .18 and .19) fixes security issues:
- CVE-2015-3152: Client command line option --ssl-verify-server-cert (and
  MYSQL_OPT_SSL_VERIFY_SERVER_CERT option of the client API) when used
  together with --ssl will ensure that the established connection is
  SSL-encrypted and the MariaDB server has a valid certificate.
  (LP: #1464895)
- CVE-2014-8964: bundled PCRE contained heap-based buffer overflow
  vulnerability that allowed the server to crash or have other unspecified
  impact via a crafted regular expression made possible with the
  REGEXP_SUBSTR function (MDEV-8006).
- CVE-2015-0501
- CVE-2015-2571
- CVE-2015-0505
- CVE-2015-0499
(LP: #1451677)
  * New release includes fix for memory corruption on arm64 (LP: #1427406)
  * Upstream also includes lots of line ending changes (from CRLF -> LF)

 -- Otto Kekäläinen   Fri, 03 Jul 2015 17:39:42 +0300

** Changed in: mariadb-10.0 (Ubuntu Wily)
   Status: Triaged => Fix Released

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

Title:
  data corruption on arm64 and ppc64el

To manage notifications about this bug go to:
https://bugs.launchpad.net/mysql-server/+bug/1427406/+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 1314887] Re: ifupdown hook is missing in upstart script

2015-10-01 Thread Serge Hallyn
While vivid and wily are using systemd by default, upstart is still an
option there.  So this bug should first be fixed for wily before we can
SRU to trusty.

I'm going to test the attached trivially ported debdiff and intend to
push it if it doesn't seem to break anything.  An extra set of eyes
would be appreciated.

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

** Attachment added: "debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/openvswitch/+bug/1314887/+attachment/4481153/+files/debdiff

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

Title:
  ifupdown hook is missing in upstart script

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openvswitch/+bug/1314887/+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 1501772] Re: Metadata proxy process errors with binary user_data

2015-10-01 Thread OpenStack Infra
Fix proposed to branch: master
Review: https://review.openstack.org/229958

** Changed in: neutron
   Status: Confirmed => In Progress

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

Title:
  Metadata proxy process errors with binary user_data

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1501772/+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 1501703] Re: unit test failures on 32 bit architectures

2015-10-01 Thread OpenStack Infra
Reviewed:  https://review.openstack.org/229819
Committed: 
https://git.openstack.org/cgit/openstack/neutron/commit/?id=49883f1b2bfc9a4f06b1d336553d7f0ab4289a0d
Submitter: Jenkins
Branch:master

commit 49883f1b2bfc9a4f06b1d336553d7f0ab4289a0d
Author: James Page 
Date:   Thu Oct 1 11:54:28 2015 +0100

Use format to convert ints to strings

This ensures that on 32bit architectures, where
sometimes an implicit long is created, the resulting
string does not contain a 'L' suffix as generated
by the hex function.

Change-Id: I264f90d68009963fe7a217c2170e1cf2f46ae2bb
Closes-Bug: 1501703


** Changed in: neutron
   Status: In Progress => Fix Committed

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

Title:
  unit test failures on 32 bit architectures

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1501703/+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 1500950] Re: [MIR] ryu

2015-10-01 Thread James Page
For the purposes of the MIR, only python-ryu is required in main
(neutron uses its openflow features to directly configure openvswitch).

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

Title:
  [MIR] ryu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ryu/+bug/1500950/+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 1501772] Re: Metadata proxy process errors with binary user_data

2015-10-01 Thread James Page
Kyle

Patch works OK for me.

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

Title:
  Metadata proxy process errors with binary user_data

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1501772/+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 1501772] Re: Metadata proxy process errors with binary user_data

2015-10-01 Thread Kyle Mestery
James, any chance you can try the patch here [1] to see if it fixes the
issue? Thanks to Ihar for the quick turnaround!

[1] https://review.openstack.org/#/c/229958/

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

Title:
  Metadata proxy process errors with binary user_data

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1501772/+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 1501772] Re: Metadata proxy process errors with binary user_data

2015-10-01 Thread Armando Migliaccio
** Changed in: neutron
Milestone: None => mitaka-1

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

Title:
  Metadata proxy process errors with binary user_data

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1501772/+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 1457517] Re: Unable to boot from volume when flavor disk too small

2015-10-01 Thread Serge Hallyn
This fix is in the current wily package, so marking fix released there.

** Changed in: nova (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  Unable to boot from volume when flavor disk too small

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1457517/+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 1492227] Re: 0.94.3 stable update

2015-10-01 Thread Brian Murray
Hello James, or anyone else affected,

Accepted ceph into vivid-proposed. The package will build now and be
available at
https://launchpad.net/ubuntu/+source/ceph/0.94.3-0ubuntu0.15.04.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: ceph (Ubuntu Vivid)
   Status: In Progress => Fix Committed

** Tags added: verification-needed

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

Title:
  0.94.3 stable update

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/1492227/+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 1486931] Re: [LTCTest][Opal][OP810] ipmitool 1.8.13-1ubuntu0.3 version is still not working for in-band HPM upgrade

2015-10-01 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/trusty-proposed/ipmitool

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

Title:
  [LTCTest][Opal][OP810] ipmitool 1.8.13-1ubuntu0.3 version is still not
  working for in-band HPM upgrade

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

2015-10-01 Thread Brian Murray
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/1475247

Title:
  ceph-disk-prepare --zap-disk hang

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/1475247/+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 1475247] Re: ceph-disk-prepare --zap-disk hang

2015-10-01 Thread Launchpad Bug Tracker
This bug was fixed in the package ceph - 0.80.10-0ubuntu1.14.04.2

---
ceph (0.80.10-0ubuntu1.14.04.2) trusty; urgency=medium

  * Switch to two step 'zapping' of disks, ensuring that disks with invalid
metadata don't cause hangs are fully cleaned and initialized prior
to use (LP: #1475247).

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

  * New upstream stable point release (LP: #1477174):
- d/ceph.install: Add manpage for ceph-disk.
- d/ceph-common.install: Replace ceph_filestore_* with
  ceph-objectstore-tool.
- d/control: Ensure ceph-test-dbg depends on ceph-test only.
- d/p/fix-python-rados-memleak.patch: Dropped included upstream.

 -- Christopher Glass (Canonical) 
Mon, 10 Aug 2015 11:00:44 +0100

** 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/1475247

Title:
  ceph-disk-prepare --zap-disk hang

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/1475247/+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 1498697] Re: Targets are not consistently shown with large numbers of targets

2015-10-01 Thread Brian Murray
Why was the version of libibverbs-dev changed in the Vivid upload?

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

Title:
  Targets are not consistently shown with large numbers of targets

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tgt/+bug/1498697/+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 1498697] Re: Targets are not consistently shown with large numbers of targets

2015-10-01 Thread Eric Desrochers
Hi Brian,

I got a discussion with arges yesterday about it.

vivid version of tgt didn't build with this error :
sbuild-build-depends-tgt-dummy : Depends: libibverbs-dev (>= 1.1.8-1ubuntu1.1) 
but 1.1.8-1ubuntu1 is to be installed

I think it has something to do with this LP patch :

LP: https://bugs.launchpad.net/bugs/1409904
PPA: https://launchpad.net/~inaddy/+archive/ubuntu/lp1409904/

This is why the version of libibverbs-dev changed in the Vivid upload.

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

Title:
  Targets are not consistently shown with large numbers of targets

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tgt/+bug/1498697/+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 1475910] Re: package ceph 0.94.1-0ubuntu1 failed to install/upgrade: trying to overwrite '/usr/share/man/man8/ceph-deploy.8.gz', which is also in package ceph-deploy 1.5.20-0ubuntu1

2015-10-01 Thread Brian Murray
Hello Thomas, or anyone else affected,

Accepted ceph into vivid-proposed. The package will build now and be
available at
https://launchpad.net/ubuntu/+source/ceph/0.94.3-0ubuntu0.15.04.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: ceph (Ubuntu Vivid)
   Status: In Progress => Fix Committed

** Tags added: verification-needed

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

Title:
  package ceph 0.94.1-0ubuntu1 failed to install/upgrade: trying to
  overwrite '/usr/share/man/man8/ceph-deploy.8.gz', which is also in
  package ceph-deploy 1.5.20-0ubuntu1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/1475910/+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 1477225] Re: ceph-radosgw restart fails

2015-10-01 Thread Brian Murray
Hello Andreas, or anyone else affected,

Accepted ceph into vivid-proposed. The package will build now and be
available at
https://launchpad.net/ubuntu/+source/ceph/0.94.3-0ubuntu0.15.04.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: ceph (Ubuntu Vivid)
   Status: In Progress => Fix Committed

** Tags added: verification-needed

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

Title:
  ceph-radosgw restart fails

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/1477225/+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 1457517] Re: Unable to boot from volume when flavor disk too small

2015-10-01 Thread Brian Murray
Hello Favyen, or anyone else affected,

Accepted nova into vivid-proposed. The package will build now and be
available at
https://launchpad.net/ubuntu/+source/nova/1:2015.1.1-0ubuntu2 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: nova (Ubuntu Vivid)
   Status: New => Fix Committed

** Tags added: verification-needed

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

Title:
  Unable to boot from volume when flavor disk too small

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1457517/+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 1314887] Re: ifupdown hook is missing in upstart script

2015-10-01 Thread Serge Hallyn
It looks fine, but is there a particular reason why you run awk over
/etc/network/interfaces by hand instead of using ifquery the way the
sysvinit job does?

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

Title:
  ifupdown hook is missing in upstart script

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openvswitch/+bug/1314887/+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 1470120] Re: [SRU] openvswitch 2.3.2

2015-10-01 Thread Launchpad Bug Tracker
This bug was fixed in the package openvswitch - 2.3.2-0ubuntu0.15.04.1

---
openvswitch (2.3.2-0ubuntu0.15.04.1) vivid; urgency=medium

  * New upstream point release (LP: #1470120):
- d/p/*: Refresh all patches.
- d/p/rules: Skip test 717 due to failure on powerpc - see
  http://pad.lv/1472202 for full details.
  * d/tests/openflow.py: Use net.addLink to add links between switches and
hosts to ensure that they get cleanup up after use, fixing autopkgtest
failures.

 -- James Page   Tue, 30 Jun 2015 14:34:02 +0100

** Changed in: openvswitch (Ubuntu Vivid)
   Status: Fix Committed => Fix Released

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

Title:
  [SRU] openvswitch 2.3.2

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

2015-10-01 Thread Brian Murray
The verification of the Stable Release Update for openvswitch 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 openvswitch in Ubuntu.
https://bugs.launchpad.net/bugs/1470120

Title:
  [SRU] openvswitch 2.3.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openvswitch/+bug/1470120/+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 1488453] Re: Package postinst always fail on first install when using systemd

2015-10-01 Thread Scott Moser
** Also affects: openhpi (Ubuntu Vivid)
   Importance: Undecided
   Status: New

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

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

** Changed in: openhpi (Ubuntu Vivid)
 Assignee: (unassigned) => Scott Moser (smoser)

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

Title:
  Package postinst always fail on first install when using systemd

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openhpi/+bug/1488453/+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 1486931] Re: [LTCTest][Opal][OP810] ipmitool 1.8.13-1ubuntu0.3 version is still not working for in-band HPM upgrade

2015-10-01 Thread Chris J Arges
Hello bugproxy, or anyone else affected,

Accepted ipmitool into trusty-proposed. The package will build now and
be available at
https://launchpad.net/ubuntu/+source/ipmitool/1.8.13-1ubuntu0.4 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: ipmitool (Ubuntu Trusty)
   Status: In Progress => Fix Committed

** Tags added: verification-needed

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

Title:
  [LTCTest][Opal][OP810] ipmitool 1.8.13-1ubuntu0.3 version is still not
  working for in-band HPM upgrade

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ipmitool/+bug/1486931/+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 1486931] Re: [LTCTest][Opal][OP810] ipmitool 1.8.13-1ubuntu0.3 version is still not working for in-band HPM upgrade

2015-10-01 Thread bugproxy
** Tags removed: bugnameltc-129223 patch severity-critical verification-
needed

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

Title:
  [LTCTest][Opal][OP810] ipmitool 1.8.13-1ubuntu0.3 version is still not
  working for in-band HPM upgrade

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ipmitool/+bug/1486931/+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 1501772] Re: Metadata proxy process errors with binary user_data

2015-10-01 Thread OpenStack Infra
** Changed in: neutron
 Assignee: Ihar Hrachyshka (ihar-hrachyshka) => Cedric Brandily (cbrandily)

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

Title:
  Metadata proxy process errors with binary user_data

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1501772/+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 1501491] Re: Unable to start containers after upgrade to 1.0.7-0ubuntu0.6 on trusty

2015-10-01 Thread Stephen
** Description changed:

  A partial fix was made for 1501310 - this case still fails.
  
- /home/ubuntu/nzos/volumes/1.0.0/common/shared
- /var/lib/lxc/0002/rootfs/nzos/./__shared__ none ro,bind 0 0
+ /home/ubuntu//volumes/1.0.0/common/shared
+ /var/lib/lxc/0002/rootfs//./__shared__ none ro,bind 0 0
  
  This line is giving the same error. With 1.0.7-0ubuntu0.6 installed.
  
  lxc-start: utils.c: ensure_not_symlink: 1398 Mount onto /usr/lib/x86_64
- -linux-gnu/lxc//nzos/./__shared__ resulted in /usr/lib/x86_64-linux-
- gnu/lxc/nzos/__shared__
+ -linux-gnu/lxc///./__shared__ resulted in /usr/lib/x86_64-linux-
+ gnu/lxc//__shared__
  
- lxc-start: utils.c: safe_mount: 1423 Mount of 
'/home/ubuntu/nzos/volumes/1.0.0/common/shared' onto 
'/usr/lib/x86_64-linux-gnu/lxc//nzos/./__shared__' was onto a symlink!
- lxc-start: conf.c: mount_entry: 2051 No such file or directory - failed to 
mount '/home/ubuntu/nzos/volumes/1.0.0/common/shared' on 
'/usr/lib/x86_64-linux-gnu/lxc//nzos/./__shared__'
+ lxc-start: utils.c: safe_mount: 1423 Mount of 
'/home/ubuntu//volumes/1.0.0/common/shared' onto 
'/usr/lib/x86_64-linux-gnu/lxc///./__shared__' was onto a symlink!
+ lxc-start: conf.c: mount_entry: 2051 No such file or directory - failed to 
mount '/home/ubuntu//volumes/1.0.0/common/shared' on 
'/usr/lib/x86_64-linux-gnu/lxc///./__shared__'
  lxc-start: conf.c: lxc_setup: 4160 failed to setup the mounts for '0002'
  lxc-start: start.c: do_start: 688 failed to setup the container
  lxc-start: sync.c: __sync_wait: 51 invalid sequence number 1. expected 2
  lxc-start: start.c: __lxc_start: 1080 failed to spawn '0002'
  lxc-start: lxc_start.c: main: 342 The container failed to start.
  lxc-start: lxc_start.c: main: 346 Additional information can be obtained by 
setting the --logfile and --logpriority options.
  
  lsb_release -a
  No LSB modules are available.
  Distributor ID:   Ubuntu
  Description:  Ubuntu 14.04.2 LTS
  Release:  14.04
  Codename: trusty

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

Title:
  Unable to start containers after upgrade to 1.0.7-0ubuntu0.6 on trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1501491/+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 1501812] Re: package irqbalance 1.0.6-3ubuntu1 failed to install/upgrade: package irqbalance is not ready for configuration cannot configure (current status `half-installed')

2015-10-01 Thread Seth Arnold
Thanks for taking the time to report this bug and helping to make Ubuntu
better. We appreciate the difficulties you are facing, but this appears
to be a "regular" (non-security) bug.  I have unmarked it as a security
issue since this bug does not show evidence of allowing attackers to
cross privilege boundaries nor directly cause loss of data/privacy.
Please feel free to report any other bugs you may find.

** Information type changed from Private Security to Public

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

Title:
  package irqbalance 1.0.6-3ubuntu1 failed to install/upgrade: package
  irqbalance is not ready for configuration  cannot configure (current
  status `half-installed')

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1501812/+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 1490110] Re: package lxc 1.1.3-0ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 100

2015-10-01 Thread Huygens
I had the same problem while upgrading from 15.04 to 15.10 today.
I had 1 ppa installed on this system (ppa:ubuntu-lxc/stable) which I reverted 
before doing the upgrade using the ppa-purge tool.
After purging this ppa from my system, I proceeded with the upgrade and it 
failed like this bug report mention.

As for the 2 commands they return both the same thing (note that I run
these 2 commands after having done "sudo apt update; sudo apt upgrade"
which seems to have fixed the lxc and lxc-template set up):

$ sudo systemctl status lxc
● lxc.service - LXC Container Initialization and Autoboot Code
   Loaded: loaded (/lib/systemd/system/lxc.service; enabled; vendor preset: 
enabled)
   Active: active (exited) since Thu 2015-10-01 19:11:26 CEST; 2h 39min ago
 Main PID: 27092 (code=exited, status=0/SUCCESS)

Oct 01 19:11:26 ubuntu systemd[1]: Starting LXC Container Initialization and 
Autoboot Code...
Oct 01 19:11:26 ubuntu lxc-devsetup[27076]: /dev is devtmpfs
Oct 01 19:11:26 ubuntu systemd[1]: Started LXC Container Initialization and 
Autoboot Code.
Oct 01 19:11:27 ubuntu systemd[1]: Started LXC Container Initialization and 
Autoboot Code.
$ sudo service lxc status
● lxc.service - LXC Container Initialization and Autoboot Code
   Loaded: loaded (/lib/systemd/system/lxc.service; enabled; vendor preset: 
enabled)
   Active: active (exited) since Thu 2015-10-01 19:11:26 CEST; 2h 40min ago
 Main PID: 27092 (code=exited, status=0/SUCCESS)

Oct 01 19:11:26 ubuntu systemd[1]: Starting LXC Container Initialization and 
Autoboot Code...
Oct 01 19:11:26 ubuntu lxc-devsetup[27076]: /dev is devtmpfs
Oct 01 19:11:26 ubuntu systemd[1]: Started LXC Container Initialization and 
Autoboot Code.
Oct 01 19:11:27 ubuntu systemd[1]: Started LXC Container Initialization and 
Autoboot Code.

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

Title:
  package lxc 1.1.3-0ubuntu1 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 100

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1490110/+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 1501566] Re: squid3 FTBFS due to missing --name arg to pod2man

2015-10-01 Thread Ubuntu Foundations Team Bug Bot
The attachment "patch with fixes for this bug as well as LP: #1496223
and LP: #1496924" 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 squid3 in Ubuntu.
https://bugs.launchpad.net/bugs/1501566

Title:
  squid3 FTBFS due to missing --name arg to pod2man

To manage notifications about this bug go to:
https://bugs.launchpad.net/squid/+bug/1501566/+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 1496223] Re: squid3 FTBFS due to linux-libc-dev and libc6-dev headers mismatch

2015-10-01 Thread Ubuntu Foundations Team Bug Bot
The attachment "fixes for this bug as well as LP: #1501566 and LP:
#1496924" 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 squid3 in Ubuntu.
https://bugs.launchpad.net/bugs/1496223

Title:
  squid3 FTBFS due to linux-libc-dev and libc6-dev headers mismatch

To manage notifications about this bug go to:
https://bugs.launchpad.net/squid/+bug/1496223/+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 1501772] Re: Metadata proxy process errors with binary user_data

2015-10-01 Thread OpenStack Infra
** Changed in: neutron
 Assignee: Cedric Brandily (cbrandily) => Henry Gessau (gessau)

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

Title:
  Metadata proxy process errors with binary user_data

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1501772/+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 1501812] Re: package irqbalance 1.0.6-3ubuntu1 failed to install/upgrade: package irqbalance is not ready for configuration cannot configure (current status `half-installed')

2015-10-01 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 irqbalance in Ubuntu.
https://bugs.launchpad.net/bugs/1501812

Title:
  package irqbalance 1.0.6-3ubuntu1 failed to install/upgrade: package
  irqbalance is not ready for configuration  cannot configure (current
  status `half-installed')

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/irqbalance/+bug/1501812/+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 1501042] Re: Hosted version for 14.04 is incompatible with python 3.4.1+

2015-10-01 Thread Jordon Phillips
*** This bug is a duplicate of bug 1499075 ***
https://bugs.launchpad.net/bugs/1499075

** This bug has been marked a duplicate of bug 1499075
   python3.4.3 SRU breaks awscli

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

Title:
  Hosted version for 14.04 is incompatible with python 3.4.1+

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/awscli/+bug/1501042/+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 1501174] Re: awscli throws an exception when listing the objects in the bucket

2015-10-01 Thread Jordon Phillips
*** This bug is a duplicate of bug 1499075 ***
https://bugs.launchpad.net/bugs/1499075

** This bug is no longer a duplicate of bug 1501042
   Hosted version for 14.04 is incompatible with python 3.4.1+
** This bug has been marked a duplicate of bug 1499075
   python3.4.3 SRU breaks awscli

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

Title:
  awscli throws an exception when listing the objects in the bucket

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/awscli/+bug/1501174/+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 1490110] Re: package lxc 1.1.3-0ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 100

2015-10-01 Thread Serge Hallyn
So you installed ppa:ubuntu-lxc/stable in vivid, then ran ppa-purge to
revert to archive packaging, then ran do-release-upgrade, which then
failed?

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

Title:
  package lxc 1.1.3-0ubuntu1 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 100

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1490110/+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 1457957] Re: puppet uses upstart for service status checks in vivid

2015-10-01 Thread Michael Wodniok
This still exists in current dev-version of Ubuntu 15.10. Is this a bug
caused by the (quite old, current Puppet-version is 4.2.2) Ubuntu
package or by puppet itself?

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

Title:
  puppet uses upstart for service status checks in vivid

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/puppet/+bug/1457957/+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 1496223] Re: squid3 FTBFS due to linux-libc-dev and libc6-dev headers mismatch

2015-10-01 Thread Matthias Klose
the libecap patch is wrong. you need to work with package in wily-
proposed, which already has the soname bump upstream.

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

Title:
  squid3 FTBFS due to linux-libc-dev and libc6-dev headers mismatch

To manage notifications about this bug go to:
https://bugs.launchpad.net/squid/+bug/1496223/+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 1501625] Re: package php5-cli 5.6.4+dfsg-4ubuntu6.3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 4

2015-10-01 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 php5 in Ubuntu.
https://bugs.launchpad.net/bugs/1501625

Title:
  package php5-cli 5.6.4+dfsg-4ubuntu6.3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 4

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1501625/+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 1501625] [NEW] package php5-cli 5.6.4+dfsg-4ubuntu6.3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 4

2015-10-01 Thread Marcin Dancewicz
Public bug reported:

This update was initialized by the Software Updater

ProblemType: Package
DistroRelease: Ubuntu 15.04
Package: php5-cli 5.6.4+dfsg-4ubuntu6.3
ProcVersionSignature: Ubuntu 3.19.0-30.33-generic 3.19.8-ckt6
Uname: Linux 3.19.0-30-generic x86_64
ApportVersion: 2.17.2-0ubuntu1.5
Architecture: amd64
Date: Thu Oct  1 09:14:36 2015
DuplicateSignature: package:php5-cli:5.6.4+dfsg-4ubuntu6.3:subprocess installed 
post-installation script returned error exit status 4
ErrorMessage: subprocess installed post-installation script returned error exit 
status 4
InstallationDate: Installed on 2015-08-17 (44 days ago)
InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
RelatedPackageVersions:
 dpkg 1.17.25ubuntu1
 apt  1.0.9.7ubuntu4.1
SourcePackage: php5
Title: package php5-cli 5.6.4+dfsg-4ubuntu6.3 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 4
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package vivid

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

Title:
  package php5-cli 5.6.4+dfsg-4ubuntu6.3 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 4

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1501625/+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 1501959] Re: "System error" on chfn / su with lxc-start --share-net

2015-10-01 Thread Ryan Finnie
** Description changed:

  When running `lxc-start --share net 1` on a trusty host with a trusty
  container, chfn / su (and presumably other utilities which use PAM)
  fail.
  
  Test case:
  
  lxc-create -t ubuntu -n test1
  cat >/var/lib/lxc/test1/rootfs/config 

[Bug 1501966] [NEW] support changing Apparmor hats

2015-10-01 Thread Simon Déziel
Public bug reported:

Some older versions of OpenSSH had a patch allowing the daemon to change
Apparmor hats to apply different containment profiles to different code
paths (AUTHENTICATED, EXEC, PRIVSEP, etc).

This feature would need to be ported to recent OpenSSH versions and sent
upstream for inclusion in the portable branch.

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

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

Title:
  support changing Apparmor hats

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openssh/+bug/1501966/+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 1501959] [NEW] "System error" on chfn / su with lxc-start --share-net

2015-10-01 Thread Ryan Finnie
Public bug reported:

When running `lxc-start --share net 1` on a trusty host with a trusty
container, chfn / su (and presumably other utilities which use PAM)
fail.

Test case:

lxc-create -t ubuntu -n test1
cat >/var/lib/lxc/test1/rootfs/config 

[Bug 1501772] Re: Metadata proxy process errors with binary user_data

2015-10-01 Thread OpenStack Infra
Reviewed:  https://review.openstack.org/229958
Committed: 
https://git.openstack.org/cgit/openstack/neutron/commit/?id=80e3d9be4923ecad17377b1d15c8392b8a43dac6
Submitter: Jenkins
Branch:master

commit 80e3d9be4923ecad17377b1d15c8392b8a43dac6
Author: Ihar Hrachyshka 
Date:   Thu Oct 1 17:13:25 2015 +0200

metadata: don't crash proxy on non-unicode user data

We attempt to log every successful metadata response with LOG.debug. But
as per oslo.log docs [1], we should make sure that what we pass into the
library is unicode.

Http.request returns a tuple of Response object and a string, which is
bytes in Python 2.x [2].

That's why we need to convert the response content to unicode before
passing it into oslo.log.

To achieve it, we utilize encodeutils.safe_decode with 'replace' errors
handling strategy, so that we don't get exceptions on input that does
not conform unicode.

For the unit test case, we pass a string that is not expected to convert
to unicode with errors='strict' strategy or similar, and check that we
still don't crash.

While at it, we remove a check for the number of log calls being
triggered, because it's something that we should avoid validating in
test cases, and it cannot trigger a real bug. The mock that was used to
count the number would also hide the bug that we try to reproduce.

Note that the bug does not require debug to be set because the crash
occurs before oslo.log machinery decides it should not log the message.

[1]: 
http://docs.openstack.org/developer/oslo.log/usage.html#no-more-implicit-conversion-to-unicode-str
[2]: 
http://bitworking.org/projects/httplib2/doc/html/libhttplib2.html#httplib2.Http.request

Closes-Bug: #1501772
Change-Id: I6a32c40ff117fae43913386134c8981539697ce8


** Changed in: neutron
   Status: In Progress => Fix Committed

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

Title:
  Metadata proxy process errors with binary user_data

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1501772/+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 1500950] Re: [MIR] ryu

2015-10-01 Thread Matthias Klose
- the packaging itself looks ok
 - I think we should not accept new python modules in main
   which are not already packaged for python3.  According to
   the upstream sources, the packages is ready for python3.4.
 - ryu-bin should use python3.
 - The ryu-bin package starts a service as root, and doesn't
   seem to drop privileges, and is accessing the network.
   The MIR misses the security checks mentioned in the
   MIR requirements.


** Changed in: ryu (Ubuntu)
   Status: New => Incomplete

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

Title:
  [MIR] ryu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ryu/+bug/1500950/+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 1477225] Re: ceph-radosgw restart fails

2015-10-01 Thread David Britton
** Tags added: kanban-cross-team

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

Title:
  ceph-radosgw restart fails

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ceph/+bug/1477225/+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 1501491] Re: Unable to start containers after upgrade to 1.0.7-0ubuntu0.6 on trusty

2015-10-01 Thread Ubuntu Foundations Team Bug Bot
** Tags added: patch

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

Title:
  Unable to start containers after upgrade to 1.0.7-0ubuntu0.6 on trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1501491/+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 1501644] Re: package squid3 3.3.8-1ubuntu14 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2015-10-01 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 squid3 in Ubuntu.
https://bugs.launchpad.net/bugs/1501644

Title:
  package squid3 3.3.8-1ubuntu14 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/squid3/+bug/1501644/+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 1501651] Re: ARM chroot issues: fatal error: rt_sigaction failure

2015-10-01 Thread John Lenton
It's a long-standing qemu bug. See
https://groups.google.com/forum/#!topic/golang-nuts/MqKTX_XIOKE for
example.

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

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

Title:
  ARM chroot issues: fatal error: rt_sigaction failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/snapcraft/+bug/1501651/+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 1500198] Re: Sync xinetd 1:2.3.15-4 (main) from Debian unstable (main)

2015-10-01 Thread Sebastien Bacher
This bug was fixed in the package xinetd - 1:2.3.15-4
Sponsored for LocutusOfBorg (costamagnagianfranco)

---
xinetd (1:2.3.15-4) unstable; urgency=low

  * Add xinetd upstart job from Ubuntu
  * Bump Standards-Version to 3.9.6
  * Moved update-inetd to recommends. inetd compat mode is
not compulsory.

 -- Salvo 'LtWorf' Tomaselli   Thu, 17 Sep 2015
09:08:48 +0200

** Changed in: xinetd (Ubuntu)
   Importance: Undecided => Wishlist

** Changed in: xinetd (Ubuntu)
   Status: New => Fix Committed

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

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

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

Title:
  Sync xinetd 1:2.3.15-4 (main) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xinetd/+bug/1500198/+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 1476662] Re: lxc-start symlink vulnerabilities may allow guest to read host filesystem, interfere with apparmor

2015-10-01 Thread Daniel Kraft
Regression fix fixes it on 14.04 LTS. Confirmed. Thanks!

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

Title:
  lxc-start symlink vulnerabilities may allow guest to read host
  filesystem, interfere with apparmor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1476662/+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 1501310] Re: Unable to start containers after upgrade to 1.0.7-0ubuntu0.5 on trusty

2015-10-01 Thread Tobias Eriksson
Thanks,

it works just fine with the new 1.0.7-0ubuntu0.6

Best regards
Tobias

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

Title:
  Unable to start containers after upgrade to 1.0.7-0ubuntu0.5 on trusty

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