[Bug 1446906] Re: lxc container with postfix, permission denied on mailq

2015-12-18 Thread John Johansen
Kernels with version 3 of the fix can be found at
   http://people.canonical.com/~jj/lp1446906/

please test and leave feedback as to whether this fixes the issue

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

Title:
  lxc container with postfix, permission denied on mailq

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1446906/+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] Re: numa_node_of_cpu() returns warning when cpu_index > 79

2015-12-18 Thread Thierry FAUCK
Path has been pushed upstream:
https://github.com/numactl/numactl/commit/a69169698c4c086b7a74602938b329fb055fdf60

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

Title:
  numa_node_of_cpu() returns warning  when cpu_index > 79

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

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


[Bug 1358835] Comment bridged from LTC Bugzilla

2015-12-18 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 1322264] Re: Munin fails to generate graph, stat should be less than end

2015-12-18 Thread gollum53
Yes, please backport this. If I correct the file myself, will this break 
something?
Thanx
Roman

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

Title:
  Munin fails to generate graph, stat should be less than end

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/munin/+bug/1322264/+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 1375821] Re: ifupdown doesn't bring loopback to state up

2015-12-18 Thread Dariusz Gadomski
I have backported the fix to trusty in my ppa.

Unfortunately I was not able to reproduce this issue (although my tests
are ongoing). With that being said I would really appreciate anyone that
is affected by this issue to give it a try and let me know whether the
backport fixed that for them.

The ppa with the backport is ppa:dgadomski/lp1375821

Thank you!

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

Title:
  ifupdown doesn't bring loopback to state up

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ifupdown/+bug/1375821/+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 1503418] Re: [SRU] [REGRESSION] launching byobu from unity uses the terminal icon rather than the application icon

2015-12-18 Thread Hanmac
changes in byobu does need to be backported to willy too because
currently its still broken in willy

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

Title:
  [SRU] [REGRESSION] launching byobu from unity uses the terminal icon
  rather than the application icon

To manage notifications about this bug go to:
https://bugs.launchpad.net/bamf/+bug/1503418/+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 1460164] Re: upgrade of openvswitch-switch can sometimes break neutron-plugin-openvswitch-agent

2015-12-18 Thread James Page
The neutron code does make some attempts to monitor the state of
openvswitch - a restart of the ovs database process should be detected
by the agent, and appropriate action taken.

Having the agent detect and respond to the status of openvswitch and the
flows its managing should be the right approach to dealing with this
situation; I believe that this part of the codebase has improved since
Icehouse, so we'll take a look, do some testing and see whether there
are some cherry-picks we can make for Icehouse to improve resilience.

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

Title:
  upgrade of openvswitch-switch can sometimes break neutron-plugin-
  openvswitch-agent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/neutron/+bug/1460164/+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 1460164] Re: upgrade of openvswitch-switch can sometimes break neutron-plugin-openvswitch-agent

2015-12-18 Thread Mark Shuttleworth
Is the fix here to ensure that restarts of one are automatically
sequenced with restarts of the other service?

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

Title:
  upgrade of openvswitch-switch can sometimes break neutron-plugin-
  openvswitch-agent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/neutron/+bug/1460164/+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 1460164] Re: upgrade of openvswitch-switch can sometimes break neutron-plugin-openvswitch-agent

2015-12-18 Thread James Page
On a fresh icehouse install I see the following on a restart of ovs:

2015-12-18 11:05:26.855 6876 DEBUG neutron.agent.linux.async_process [-] 
Halting async process [['ovsdb-client', 'monitor', 'Interface', 'name,ofport', 
'--format=json']]. stop 
/usr/lib/python2.7/dist-packages/neutron/agent/linux/async_process.py:90
2015-12-18 11:05:26.857 6876 CRITICAL neutron [-] Trying to re-send() an 
already-triggered event.

The neutron-plugin-openvswitch-agent then terminates and gets restarted
by upstart, triggering a full sync of ovs state:


2015-12-18 11:05:27.229 11075 INFO neutron.common.config [-] Logging enabled!
2015-12-18 11:05:27.230 11075 DEBUG 
neutron.plugins.openvswitch.agent.ovs_neutron_agent [-] 

 log_opt_values /usr/lib/python2.7/dist-packages/oslo/config/cfg.py:1928
2015-12-18 11:05:27.230 11075 DEBUG 
neutron.plugins.openvswitch.agent.ovs_neutron_agent [-] Configuration options 
gathered from: log_opt_values 
/usr/lib/python2.7/dist-packages/oslo/config/cfg.py:1929
2015-12-18 11:05:27.230 11075 DEBUG 
neutron.plugins.openvswitch.agent.ovs_neutron_agent [-] command line args: 
['--config-file=/etc/neutron/neutron.conf', 
'--config-file=/etc/neutron/plugins/ml2/ml2_conf.ini', 
'--log-file=/var/log/neutron/openvswitch-agent.log'] log_opt_values 
/usr/lib/python2.7/dist-packages/oslo/config/cfg.py:1930
2015-12-18 11:05:27.230 11075 DEBUG 
neutron.plugins.openvswitch.agent.ovs_neutron_agent [-] config files: 
['/etc/neutron/neutron.conf', '/etc/neutron/plugins/ml2/ml2_conf.ini'] 
log_opt_values /usr/lib/python2.7/dist-packages/oslo/config/cfg.py:1931

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

Title:
  upgrade of openvswitch-switch can sometimes break neutron-plugin-
  openvswitch-agent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/neutron/+bug/1460164/+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 1460164] Re: upgrade of openvswitch-switch can sometimes break neutron-plugin-openvswitch-agent

2015-12-18 Thread James Page
Critically, the observation made in comment #8 does not always happen -
i.e. I don't reliable seen the openvswitch-agent process exiting
abnormally and then restarting all flows.  I suspect this is a racey in
some way - so if you luck out with a CRITICAL failure on an ovs restart,
ovs gets re-configured on a full sync.

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

Title:
  upgrade of openvswitch-switch can sometimes break neutron-plugin-
  openvswitch-agent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/neutron/+bug/1460164/+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 1318721] Re: RPC timeout in all neutron agents

2015-12-18 Thread Mathew Hodson
** Also affects: oslo.messaging (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: oslo.messaging (Ubuntu)
   Importance: Undecided => Medium

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

Title:
  RPC timeout in all neutron agents

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1318721/+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 1475050] Re: unprivileged guest to host real-root escape via lxc-attach

2015-12-18 Thread Marc Deslauriers
** Information type changed from Private Security to Public Security

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

Title:
  unprivileged guest to host real-root escape via lxc-attach

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1475050/+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 1460164] Re: upgrade of openvswitch-switch can sometimes break neutron-plugin-openvswitch-agent

2015-12-18 Thread James Page
This commit is not in Icehouse, and looks to improve the general error
handling in this instance:

https://github.com/openstack/neutron/commit/91b7fc7f162751936f7cb15d4add932a4aebd55b

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

Title:
  upgrade of openvswitch-switch can sometimes break neutron-plugin-
  openvswitch-agent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/neutron/+bug/1460164/+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 1455818] Re: mysql-server-5.6.postrm fails when /usr/share/mysql-common/configure-symlinks doesn't exist

2015-12-18 Thread Robie Basak
If anyone is affected by this on Vivid or Wily, please let me know and I
can bump the priority. Right now I believe there have been no reports
since this was fixed in Xenial so I am not prioritising it.

** Also affects: mysql-5.6 (Ubuntu Vivid)
   Importance: Undecided
   Status: New

** Also affects: mysql-5.6 (Ubuntu Wily)
   Importance: Undecided
   Status: New

** Changed in: mysql-5.6 (Ubuntu Vivid)
   Status: New => Triaged

** Changed in: mysql-5.6 (Ubuntu Wily)
   Status: New => Triaged

** Changed in: mysql-5.6 (Ubuntu Vivid)
   Importance: Undecided => Low

** Changed in: mysql-5.6 (Ubuntu Wily)
   Importance: Undecided => Low

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

Title:
  mysql-server-5.6.postrm fails when /usr/share/mysql-common/configure-
  symlinks doesn't exist

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.6/+bug/1455818/+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 1525482] Re: configure-symlinks: Filen eller katalogen finns inte

2015-12-18 Thread Robie Basak
Thank you for your report.

This looks like a local configuration problem, rather than a bug in
Ubuntu.

You have mysql-common 10.0.21+maria-1~vivid [origin: unknown] installed,
which isn't shipped by Ubuntu and is causing your problem.

You can find pointers to get help for this sort of problem here:
http://www.ubuntu.com/support/community

Since we use this bug tracker to track bugs in Ubuntu, rather than
configuration problems, I'm marking this bug as Invalid. This helps us
to focus on fixing bugs in Ubuntu.

If you believe that this is really a bug, then you may find it helpful
to read "How to report bugs effectively"
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html. We'd be grateful
if you would then provide a more complete description of the problem,
explain why you believe this is a bug in Ubuntu rather than a problem
specific to your system, and then change the bug status back to New.


** Changed in: mysql-5.6 (Ubuntu)
   Status: New => Invalid

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

Title:
  configure-symlinks: Filen eller katalogen finns inte

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.6/+bug/1525482/+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 1460164] Re: upgrade of openvswitch-switch can sometimes break neutron-plugin-openvswitch-agent

2015-12-18 Thread James Page
I retested with Liberty, and saw pretty much the same behaviour; digging
into this a bit deeper, I think this is related to the l2-population
driver usage - with l2 pop disabled, a restart of ovs resulted in a
short network outage for the instances, but service was restored quickly
- with l2 pop enabled, a full agent restart was required to get things
humming again.

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

Title:
  upgrade of openvswitch-switch can sometimes break neutron-plugin-
  openvswitch-agent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/neutron/+bug/1460164/+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 1460164] Re: restart of openvswitch-switch causes instance network down when l2population enabled

2015-12-18 Thread James Page
The fdb_add method checks to see if the agent already has a registered
ofport for each tunnel it requires - this is now stale, so results in
the tunnel setup being skipped - the tunnel ports are still present in
the ovsdb - however all of the flows are missing resulting in full loss
of instance connectivity.

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

Title:
  restart of openvswitch-switch causes instance network down when
  l2population enabled

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1460164/+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 1527666] Re: lxc on Wily cannot dist-upgrade Xenial

2015-12-18 Thread Robie Basak
Correction. Rather than systemd being upgraded, I think there's
something that fires a trigger in it that sets off the failure.

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

Title:
  lxc on Wily cannot dist-upgrade Xenial

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1527666/+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 1527666] [NEW] lxc on Wily cannot dist-upgrade Xenial

2015-12-18 Thread Robie Basak
Public bug reported:

This affects 1.1.5-0ubuntu0.15.10.3 on Wily. I believe it also affects
1.1.5-0ubuntu0.15.04.3 on Vivid.

Downgrading to 1.1.4-0ubuntu1 fixes it, so it does not affect
1.1.4-0ubuntu1 on Wily.

My failure case is that I am running adt-run --apt-pocket=proposed -U
with adt-virt-lxc and a test needs to upgrade systemd in the container
which fails in the postinst. I think this comes down to lxc being unable
to dist-upgrade xenial-proposed.

I created the container with: sudo lxc-create -n xenial -t ubuntu-cloud
-- -r xenial -T http://cloud-images.ubuntu.com/xenial/current/xenial-
server-cloudimg-amd64-root.tar.gz -F

Reproduce with: adt-run -U --apt-pocket=proposed libapache2-mod-perl2
--- adt-virt-lxc -es xenial

Expected: test pass (or fail for unrelated reason)

Actual: test fail due to:

Processing triggers for systemd (228-2ubuntu2) ...
Failed to execute operation: Failed to activate service 
'org.freedesktop.systemd1': timed out
dpkg: error processing package systemd (--unpack):
 subprocess installed post-installation script returned error exit status 1
Processing triggers for ufw (0.34-2) ...
Errors were encountered while processing:
 systemd
E: Sub-process /usr/bin/dpkg returned an error code (1)
blame: libapache2-mod-perl2
badpkg: failed to run apt-get to satisfy adt-satdep.deb dependencies
adt-run [15:57:15]: ERROR: erroneous package: failed to run apt-get to satisfy 
adt-satdep.deb dependencies

I tried to reduce the failure case but I'm not sure how to manually
activate a trigger for systemd.

Workaround: downgrade using: sudo apt-get install lxc=1.1.4-0ubuntu1
lxcfs=0.10-0ubuntu2 liblxc1=1.1.4-0ubuntu1 python3-lxc=1.1.4-0ubuntu1

Presumably the failure case will stop working once systemd lands in the
xenial release pocket, but perhaps reconfiguring it would still
reproduce?

Confirmed since pitti has experienced this as well.

** Affects: lxc (Ubuntu)
 Importance: Undecided
 Status: Fix Released

** Affects: lxc (Ubuntu Wily)
 Importance: Undecided
 Status: Confirmed

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

Title:
  lxc on Wily cannot dist-upgrade Xenial

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1527666/+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 1460164] Re: restart of openvswitch-switch causes instance network down when l2population enabled

2015-12-18 Thread James Page
On a full agent restart, tunnels are setup:

2015-12-18 14:41:51.505 17767 INFO 
neutron.plugins.openvswitch.agent.ovs_neutron_agent [-] Port 
826251b8-cc26-435e-9488-16ae67bde4f6 updated. Details: {u'admin_state_up': 
True, u'network_id': u'15b42697-cf68-4b78-9e19-2d167d0b37cc', 
u'segmentation_id': 5, u'physical_network': None, u'device': 
u'826251b8-cc26-435e-9488-16ae67bde4f6', u'port_id': 
u'826251b8-cc26-435e-9488-16ae67bde4f6', u'network_type': u'gre'}
2015-12-18 14:41:51.506 17767 INFO 
neutron.plugins.openvswitch.agent.ovs_neutron_agent [-] Assigning 1 as local 
vlan for net-id=15b42697-cf68-4b78-9e19-2d167d0b37cc
2015-12-18 14:41:51.757 17767 INFO 
neutron.plugins.openvswitch.agent.ovs_neutron_agent 
[req-c53ce242-0dc1-41d2-9ab9-de88980dc3ab None] setup_tunnel_port: gre-0a052634 
10.5.38.52 gre
2015-12-18 14:41:51.769 17767 INFO 
neutron.plugins.openvswitch.agent.ovs_neutron_agent [-] Configuration for 
device 826251b8-cc26-435e-9488-16ae67bde4f6 completed.
2015-12-18 14:41:51.868 17767 INFO 
neutron.plugins.openvswitch.agent.ovs_neutron_agent [-] setup_tunnel_port: 
gre-0a052630 10.5.38.48 gre
2015-12-18 14:41:51.974 17767 INFO 
neutron.plugins.openvswitch.agent.ovs_neutron_agent [-] setup_tunnel_port: 
gre-0a052633 10.5.38.51 gre


but on a openvswitch-switch restart, this does not happen:

5-12-18 14:42:21.836 17767 ERROR neutron.agent.linux.ovsdb_monitor [-] Error 
received from ovsdb monitor: ovsdb-client: unix:/var/run/openvswitch/db.sock: 
receive failed (End of file)
2015-12-18 14:42:23.103 17767 INFO 
neutron.plugins.openvswitch.agent.ovs_neutron_agent [-] Mapping physical 
network physnet1 to bridge br-data
2015-12-18 14:42:24.923 17767 INFO 
neutron.plugins.openvswitch.agent.ovs_neutron_agent [-] Agent tunnel out of 
sync with plugin!
2015-12-18 14:42:25.188 17767 INFO neutron.agent.securitygroups_rpc [-] 
Preparing filters for devices set([u'826251b8-cc26-435e-9488-16ae67bde4f6'])
2015-12-18 14:42:25.664 17767 INFO 
neutron.plugins.openvswitch.agent.ovs_neutron_agent [-] Port 
826251b8-cc26-435e-9488-16ae67bde4f6 updated. Details: {u'admin_state_up': 
True, u'network_id': u'15b42697-cf68-4b78-9e19-2d167d0b37cc', 
u'segmentation_id': 5, u'physical_network': None, u'device': 
u'826251b8-cc26-435e-9488-16ae67bde4f6', u'port_id': 
u'826251b8-cc26-435e-9488-16ae67bde4f6', u'network_type': u'gre'}
2015-12-18 14:42:25.665 17767 INFO 
neutron.plugins.openvswitch.agent.ovs_neutron_agent [-] Assigning 1 as local 
vlan for net-id=15b42697-cf68-4b78-9e19-2d167d0b37cc
2015-12-18 14:42:26.054 17767 INFO 
neutron.plugins.openvswitch.agent.ovs_neutron_agent [-] Configuration for 
device 826251b8-cc26-435e-9488-16ae67bde4f6 completed.

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

Title:
  restart of openvswitch-switch causes instance network down when
  l2population enabled

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1460164/+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 1460164] Re: restart of openvswitch-switch causes instance network down when l2population enabled

2015-12-18 Thread OpenStack Infra
Fix proposed to branch: master
Review: https://review.openstack.org/259485

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

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

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

Title:
  restart of openvswitch-switch causes instance network down when
  l2population enabled

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1460164/+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 1460164] Re: restart of openvswitch-switch causes instance network down when l2population enabled

2015-12-18 Thread James Page
Resetting the ofport trackers appears to resolve the problem for a
openvswitch-switch restart.

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

Title:
  restart of openvswitch-switch causes instance network down when
  l2population enabled

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1460164/+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 1527661] [NEW] Create new instance from image with ceph failed after udate from kilo to lastest kilo version

2015-12-18 Thread prescolt
Public bug reported:

After upgrade to the lastest version of openstack kilo, when i boot new 
instance from image the instance started failed with error message below.  I 
see nova do not create RBD volumes of glance image to Ceph VMS pool, my system 
worked correctly before. Please check my attach file for detail
===
2015-12-18 22:07:56.590 1620300 DEBUG nova.virt.libvirt.rbd_utils 
[req-eab9562d-484f-432d-a9d7-0ab32ec99c23 0690b97b2bea47a8aeb4777856f473b2 
767b2f8a8b08403884269836420d34f0 - - -] rbd image 
352eb808-f7c3-405d-92b4-c29bf07a46f0_disk does not exist __init__ 
/usr/lib/python2.7/dist-packages/nova/virt/libvirt/rbd_utils.py:60
2015-12-18 22:07:56.641 1620300 DEBUG nova.virt.libvirt.rbd_utils 
[req-eab9562d-484f-432d-a9d7-0ab32ec99c23 0690b97b2bea47a8aeb4777856f473b2 
767b2f8a8b08403884269836420d34f0 - - -] rbd image 
352eb808-f7c3-405d-92b4-c29bf07a46f0_disk does not exist __init__ 
/usr/lib/python2.7/dist-packages/nova/virt/libvirt/rbd_utils.py:60
2015-12-18 22:15:12.033 1620300 DEBUG nova.virt.libvirt.rbd_utils 
[req-c07f3a3b-82de-41b5-9f91-e52a2295b0fa 0690b97b2bea47a8aeb4777856f473b2 
767b2f8a8b08403884269836420d34f0 - - -] rbd image 
40df5d10-6af1-49ea-bb5f-37a5e6ffa053_disk does not exist __init__ 
/usr/lib/python2.7/dist-packages/nova/virt/libvirt/rbd_utils.py:60
2015-12-18 22:15:12.093 1620300 DEBUG nova.virt.libvirt.rbd_utils 
[req-c07f3a3b-82de-41b5-9f91-e52a2295b0fa 0690b97b2bea47a8aeb4777856f473b2 
767b2f8a8b08403884269836420d34f0 - - -] rbd image 
40df5d10-6af1-49ea-bb5f-37a5e6ffa053_disk does not exist __init__ 
/usr/lib/python2.7/dist-packages/nova/virt/libvirt/rbd_utils.py:60
#

2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d] do_log=False, semaphores=semaphores, 
delay=delay):
2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d]   File 
"/usr/lib/python2.7/contextlib.py", line 17, in __ent
er__
2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d] return self.gen.next()
2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d]   File 
"/usr/lib/python2.7/dist-packages/oslo_concurrency/lo
ckutils.py", line 395, in lock
2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d] ext_lock.acquire(delay=delay)
2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d]   File 
"/usr/lib/python2.7/dist-packages/oslo_concurrency/lo
ckutils.py", line 209, in acquire
2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d] do_acquire()
2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d]   File 
"/usr/lib/python2.7/dist-packages/oslo_concurrency/lo
ckutils.py", line 158, in wrapper
2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d] return r.call(func, *args, **kwargs)
2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d]   File 
"/usr/lib/python2.7/dist-packages/retrying.py", line
222, in call
2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d] if not self.should_reject(attempt):
2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d]   File 
"/usr/lib/python2.7/dist-packages/retrying.py", line
206, in should_reject
2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d] reject |= 
self._retry_on_exception(attempt.value[1])
2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d]   File 
"/usr/lib/python2.7/dist-packages/oslo_concurrency/lockutils.py", line 130, in 
retry_on_exception
2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d] 'exception': e,
2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d] error: Unable to acquire lock on 
`/var/lib/nova/instances/locks/nova-b1eea0695ff68d78bc25e6a8e3ed77b595fd485a` 
due to [Errno 37] No locks available

** Affects: nova
 Importance: Undecided
 Status: New

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


** Tags: ceph kilo nova

** Attachment added: "Full log"
   
https://bugs.launchpad.net/bugs/1527661/+attachment/4536918/+files/nova-compute.log.gz

** Tags added: kilo

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

** Summary changed:

- Boot instance from image with ceph failed after udate lastest kilo version
+ Create new instance from image 

[Bug 1460164] Re: upgrade of openvswitch-switch can sometimes break neutron-plugin-openvswitch-agent

2015-12-18 Thread James Page
Confirmed that disabling l2-population has the same effect on restarts
of ovs on Icehouse as well.

** Summary changed:

- upgrade of openvswitch-switch can sometimes break 
neutron-plugin-openvswitch-agent
+ restart of openvswitch-switch causes instance network down when l2population 
enabled

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

Title:
  restart of openvswitch-switch causes instance network down when
  l2population enabled

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/neutron/+bug/1460164/+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 1455818] Re: mysql-server-5.6.postrm fails when /usr/share/mysql-common/configure-symlinks doesn't exist

2015-12-18 Thread Robie Basak
** Tags added: bitesize

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

Title:
  mysql-server-5.6.postrm fails when /usr/share/mysql-common/configure-
  symlinks doesn't exist

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.6/+bug/1455818/+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 1527641] [NEW] package init 1.22ubuntu11 failed to install/upgrade: pre-dependency problem - not installing init

2015-12-18 Thread John Rose
Public bug reported:

Upgrading from Trusty to Vivid.

ProblemType: Package
DistroRelease: Ubuntu 15.04
Package: init (not installed)
Uname: Linux 4.2.6-040206-generic x86_64
ApportVersion: 2.17.2-0ubuntu1.8
Architecture: amd64
Date: Fri Dec 18 14:34:51 2015
DuplicateSignature: package:init:1.22ubuntu11:pre-dependency problem - not 
installing init
ErrorMessage: pre-dependency problem - not installing init
InstallationDate: Installed on 2015-11-26 (22 days ago)
InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
RelatedPackageVersions:
 dpkg 1.17.25ubuntu1.1
 apt  1.0.9.7ubuntu4.2
SourcePackage: init-system-helpers
Title: package init 1.22ubuntu11 failed to install/upgrade: pre-dependency 
problem - not installing init
UpgradeStatus: Upgraded to vivid on 2015-12-18 (0 days ago)

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


** Tags: amd64 apport-package dist-upgrade need-duplicate-check

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

Title:
  package init 1.22ubuntu11 failed to install/upgrade: pre-dependency
  problem - not installing init

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/init-system-helpers/+bug/1527641/+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 1527105] Re: Performance: drop HANDLE_BLOCK_INTERRUPTIONS support

2015-12-18 Thread Robie Basak
Hi Daniel,

Sorry, I meant 7.0, not 5.7! So for Xenial, with 7.0 planned
(provisionally), I think we're good? If we don't get 7.0 then I look at
your patch. It sounds OK in principle.

> I'm more than happy for this to wait for Xenial.

By this do you mean that you're happy with not backporting this change
to Trusty or Vivid? That's what I was more concerned about, but if you
aren't asking for that then that's fine.

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

Title:
  Performance: drop HANDLE_BLOCK_INTERRUPTIONS support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1527105/+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 1460164] Re: restart of openvswitch-switch causes instance network down when l2population enabled

2015-12-18 Thread James Page
Looking at the tunnel_sync function in Icehouse:

def tunnel_sync(self):
resync = False
try:
for tunnel_type in self.tunnel_types:
details = self.plugin_rpc.tunnel_sync(self.context,
  self.local_ip,
  tunnel_type)
if not self.l2_pop:
tunnels = details['tunnels']
for tunnel in tunnels:
if self.local_ip != tunnel['ip_address']:

you can quite clearly see that if l2_pop is enabled, then tunnel ports
are not setup after the restart.

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

Title:
  restart of openvswitch-switch causes instance network down when
  l2population enabled

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/neutron/+bug/1460164/+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 1508744] Re: Upgrade to Ubuntu 15.10 Broken: lxc-net.service fails on upgrade

2015-12-18 Thread Robie Basak
I hit what I think might be this issue on Vivid, just doing an upgrade
to the latest lxc in vivid-updates because I was hitting a separate bug
(I'll file next) and thought updating to the latest vivid-updates might
fix it. In my case, "service lxc-net stop" succeeded, but "service lxc-
net start" still did not work. Rebooting fixed it.

I didn't keep many logs (sorry), but the original versions on Vivid and
the versions I upgraded to were:

Commandline: apt-get install lxc
Upgrade: lxc:amd64 (1.1.2-0ubuntu3, 1.1.5-0ubuntu0.15.04.3), python3-lxc:amd64 
(1.1.2-0ubuntu3, 1.1.5-0ubuntu0.15.04.3), liblxc1:amd64 (1.1.2-0ubuntu3, 
1.1.5-0ubuntu0.15.04.3)
Error: Sub-process /usr/bin/dpkg returned an error code (1)

So perhaps this might be reproducible from a Vivid machine that is on
the release pocket only, adding the -updates pocket and then "sudo apt-
get install lxc". I haven't tried this though.

I hope that's helpful.

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

Title:
  Upgrade to Ubuntu 15.10 Broken: lxc-net.service fails on upgrade

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-release-notes/+bug/1508744/+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 1527661] Re: Create new instance from image with ceph failed after udate from kilo to lastest kilo version

2015-12-18 Thread prescolt
** Description changed:

  After upgrade to the lastest version of openstack kilo, when i boot new 
instance from image the instance started failed with error message below.  I 
see nova do not create RBD volumes of glance image to Ceph VMS pool, my system 
worked correctly before. Please check my attach file for detail
  ===
+ 2015-12-18 22:07:56.590 1620300 DEBUG nova.virt.libvirt.rbd_utils 
[req-eab9562d-484f-432d-a9d7-0ab32ec99c23 0690b97b2bea47a8aeb4777856f473b2 
767b2f8a8b08403884269836420d34f0 - - -] rbd image 
352eb808-f7c3-405d-92b4-c29bf07a46f0_disk does not exist __init__ 
/usr/lib/python2.7/dist-packages/nova/virt/libvirt/rbd_utils.py:60
+ 2015-12-18 22:07:56.641 1620300 DEBUG nova.virt.libvirt.rbd_utils 
[req-eab9562d-484f-432d-a9d7-0ab32ec99c23 0690b97b2bea47a8aeb4777856f473b2 
767b2f8a8b08403884269836420d34f0 - - -] rbd image 
352eb808-f7c3-405d-92b4-c29bf07a46f0_disk does not exist __init__ 
/usr/lib/python2.7/dist-packages/nova/virt/libvirt/rbd_utils.py:60
+ 2015-12-18 22:15:12.033 1620300 DEBUG nova.virt.libvirt.rbd_utils 
[req-c07f3a3b-82de-41b5-9f91-e52a2295b0fa 0690b97b2bea47a8aeb4777856f473b2 
767b2f8a8b08403884269836420d34f0 - - -] rbd image 
40df5d10-6af1-49ea-bb5f-37a5e6ffa053_disk does not exist __init__ 
/usr/lib/python2.7/dist-packages/nova/virt/libvirt/rbd_utils.py:60
+ 2015-12-18 22:15:12.093 1620300 DEBUG nova.virt.libvirt.rbd_utils 
[req-c07f3a3b-82de-41b5-9f91-e52a2295b0fa 0690b97b2bea47a8aeb4777856f473b2 
767b2f8a8b08403884269836420d34f0 - - -] rbd image 
40df5d10-6af1-49ea-bb5f-37a5e6ffa053_disk does not exist __init__ 
/usr/lib/python2.7/dist-packages/nova/virt/libvirt/rbd_utils.py:60
+ #
  
- 2015-12-18 22:07:56.590 1620300 DEBUG nova.virt.libvirt.rbd_utils 
[req-eab9562d-484f-432d-a9d7-0ab32ec99c23 0690b97b2bea47a8aeb4777856f473b2 
767b2f8a8b0840388426983642$
- 2015-12-18 22:07:56.595 1620300 DEBUG oslo_concurrency.lockutils 
[req-8de71cfa-76fb-4efd-9b47-91c476100e23 2ebfa681e4664c9f9ea5939aa06dea44 
8925e61ab1084b6d93e35d22d14$
- 2015-12-18 22:07:56.641 1620300 DEBUG nova.virt.libvirt.rbd_utils 
[req-eab9562d-484f-432d-a9d7-0ab32ec99c23 0690b97b2bea47a8aeb4777856f473b2 
767b2f8a8b0840388426983642$
- 2015-12-18 22:07:56.647 1620300 DEBUG oslo_concurrency.lockutils 
[req-eab9562d-484f-432d-a9d7-0ab32ec99c23 0690b97b2bea47a8aeb4777856f473b2 
767b2f8a8b08403884269836420$
- 2015-12-18 22:07:56.647 1620300 ERROR nova.compute.manager 
[req-eab9562d-484f-432d-a9d7-0ab32ec99c23 0690b97b2bea47a8aeb4777856f473b2 
767b2f8a8b08403884269836420d34f0 $
- 2015-12-18 22:07:56.647 1620300 TRACE nova.compute.manager [instance: 
352eb808-f7c3-405d-92b4-c29bf07a46f0] Traceback (most recent call last):
- 2015-12-18 22:07:56.647 1620300 TRACE nova.compute.manager [instance: 
352eb808-f7c3-405d-92b4-c29bf07a46f0]   File 
"/usr/lib/python2.7/dist-packages/nova/compute/manag$
- 2015-12-18 22:07:56.647 1620300 TRACE nova.compute.manager [instance: 
352eb808-f7c3-405d-92b4-c29bf07a46f0] yield resources
- 2015-12-18 22:07:56.647 1620300 TRACE nova.compute.manager [instance: 
352eb808-f7c3-405d-92b4-c29bf07a46f0]   File 
"/usr/lib/python2.7/dist-packages/nova/compute/manag$
- 2015-12-18 22:07:56.647 1620300 TRACE nova.compute.manager [instance: 
352eb808-f7c3-405d-92b4-c29bf07a46f0] block_device_info=block_device_info)
- 2015-12-18 22:07:56.647 1620300 TRACE nova.compute.manager [instance: 
352eb808-f7c3-405d-92b4-c29bf07a46f0]   File 
"/usr/lib/python2.7/dist-packages/nova/virt/libvirt/$
- 2015-12-18 22:07:56.647 1620300 TRACE nova.compute.manager [instance: 
352eb808-f7c3-405d-92b4-c29bf07a46f0] admin_pass=admin_password)
- 2015-12-18 22:07:56.647 1620300 TRACE nova.compute.manager [instance: 
352eb808-f7c3-405d-92b4-c29bf07a46f0]   File 
"/usr/lib/python2.7/dist-packages/nova/virt/libvirt/$
- 2015-12-18 22:07:56.647 1620300 TRACE nova.compute.manager [instance: 
352eb808-f7c3-405d-92b4-c29bf07a46f0] instance, size, fallback_from_host)
- 2015-12-18 22:07:56.647 1620300 TRACE nova.compute.manager [instance: 
352eb808-f7c3-405d-92b4-c29bf07a46f0]   File 
"/usr/lib/python2.7/dist-packages/nova/virt/libvirt/$
- 2015-12-18 22:07:56.647 1620300 TRACE nova.compute.manager [instance: 
352eb808-f7c3-405d-92b4-c29bf07a46f0] size=size)
- 2015-12-18 22:07:56.647 1620300 TRACE nova.compute.manager [instance: 
352eb808-f7c3-405d-92b4-c29bf07a46f0]   File 
"/usr/lib/python2.7/dist-packages/nova/virt/libvirt/$
- 
- 2015-12-18 22:07:56.647 1620300 TRACE nova.compute.manager [instance: 
352eb808-f7c3-405d-92b4-c29bf07a46f0] prepare_template(target=base, 
max_size=size, *args, **k$
- 2015-12-18 22:07:56.647 1620300 TRACE nova.compute.manager [instance: 
352eb808-f7c3-405d-92b4-c29bf07a46f0]   File 
"/usr/lib/python2.7/dist-packages/oslo_concurrency/l$
- 2015-12-18 22:07:56.647 1620300 TRACE nova.compute.manager [instance: 
352eb808-f7c3-405d-92b4-c29bf07a46f0] do_log=False, semaphores=semaphores, 
delay=delay):
- 2015-12-18 22:07:56.647 1620300 TRACE 

[Bug 1527661] Re: Create new instance from image with ceph failed after udate from kilo to lastest kilo version

2015-12-18 Thread prescolt
i see request 
INFO nova.virt.libvirt.driver [req-f3af9880-906a-4a28-86b0-b7850dd0bbce 
0690b97b2bea47a8aeb4777856f473b2 767b2f8a8b08403884269836420d34f0 - - -] 
[instance: 69e1ddcb-f4f6-4900-b9dd-80fdaa86d58a] Creating image
 but no image available

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

Title:
  Create new instance from image with ceph failed after udate from kilo
  to lastest kilo version

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1527661/+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 1527666] Re: lxc on Wily cannot dist-upgrade Xenial

2015-12-18 Thread Stéphane Graber
Sounds like a lxcfs or cgmanager issue, moving to lxcfs for now.

** Package changed: lxc (Ubuntu) => lxcfs (Ubuntu)

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

Title:
  lxc on Wily cannot dist-upgrade Xenial

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxcfs/+bug/1527666/+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 1527666] Re: lxc on Wily cannot dist-upgrade Xenial

2015-12-18 Thread Martin Pitt
> something that fires a trigger in it that sets off the failure.

The trigger is most likely stuck in "systemctl daemon-reload", which
likely exercises some cgroup reconfiguration. In lxc these are being
redirected to lxcfs/cgmanager.

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

Title:
  lxc on Wily cannot dist-upgrade Xenial

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1527666/+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 1527666] Re: lxc on Wily cannot dist-upgrade Xenial

2015-12-18 Thread Martin Pitt
I have this on the armhf production autopkgtest machines, but I wasn't
aware that it is a general problem. These still run an ancient kernel
(3.13) under wily userspace. But it seems it happens under a full wily
amd64 too then.

For me I bisected it to downgrading lxcfs. 0.10-0ubuntu2 works,
0.10-0ubuntu2.1 breaks. I also had to downgrade lxc itself (like Robie),
but I don't remember ATM why.

FTR, this is all fine on xenial, this just happens on wily. Perhaps
wily-updates is missing some accompanying cgmanager fix?

** Also affects: lxc (Ubuntu Wily)
   Importance: Undecided
   Status: New

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

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

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

Title:
  lxc on Wily cannot dist-upgrade Xenial

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lxc/+bug/1527666/+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 1527685] [NEW] Please merge freeipmi 1.4.11-1 (main) from Debian unstable (main)

2015-12-18 Thread Tiago Stürmer Daitx
Public bug reported:

Please merge freeimpi 1.4.11-1 into Ubuntu. There are multiple changes,
some of which are bug fixes, and some of which are workarounds and other
changes. Most patches in debian/patches from 1.1.5-3ubuntu7 have been
upstreamed as well.

-

freeipmi's 1.4.11 NEWS file has 583 lines of new features, bug fixes,
and overall changes since the 1.1.5 release. See
http://sources.debian.net/src/freeipmi/1.4.11-1/NEWS/

-

Debian changelog entries since 1.1.5-3ubuntu7 release:

freeipmi (1.4.11-1) unstable; urgency=medium

  * [186d83b] Merge tag 'upstream/1.4.11'
Upstream version 1.4.11
  * [95cfc3a] Updating symbols file.

 -- Bernd Zeimetz   Wed, 25 Nov 2015 21:40:35 +0100

freeipmi (1.4.9-1) unstable; urgency=medium

  * Fresh upstream release
- removes duplicate entry from manpage (Closes: #781633)

 -- Yaroslav Halchenko   Wed, 01 Jul 2015
09:52:35 -0400

freeipmi (1.4.5-3) unstable; urgency=medium

  * ACK and re-include NMU 1.4.4-1.2

 -- Yaroslav Halchenko   Wed, 08 Oct 2014
10:15:25 -0400

freeipmi (1.4.5-2) unstable; urgency=medium

  * Return to using /etc/logrotate.d/bmc-watchdog (Closes: #763136)

 -- Ferenc Wágner   Tue, 07 Oct 2014 10:21:42 +0200

freeipmi (1.4.5-1) unstable; urgency=medium

  * [7e02411b] Merge tag 'upstream/1.4.5'
Upstream version 1.4.5

 -- Bernd Zeimetz   Sun, 05 Oct 2014 14:08:36 +0200

freeipmi (1.4.4-1.2) unstable; urgency=medium

  * Non-maintainer upload.
  * Fix debian/libipmimonitoring5a.symbols after incomplete
SONAME bump (Closes: #760920)

 -- Jonathan Wiltshire   Tue, 09 Sep 2014 14:33:33 +0100

freeipmi (1.4.4-1.1) unstable; urgency=medium

  * Non-maintainer upload.
  * Add postinsts to replace /usr/share/doc/*
with a symlink (Closes: #691439)

 -- Jonathan Wiltshire   Sun, 07 Sep 2014 13:09:22 +0100

freeipmi (1.4.4-1) unstable; urgency=low

  [ Tollef Fog Heen ]
  * New upstream release
- bump sonames
- new tool: ipmi-config
- refresh quilt patches
- upstream dropped freeipmi-bmc-watchdog logrotate.d snippet,
  reintroduce as a Debian patch.
  * Add freeipmi-ipmiseld package.
  * Adjust dh_fixperms_override call to only be called on binary-indep.

 -- Yaroslav Halchenko   Fri, 15 Aug 2014
09:23:03 -0400

freeipmi (1.1.6-1) experimental; urgency=low

  * [35d19e11] Merge tag 'upstream/1.1.6'
Upstream version 1.1.6
  * [b343fe99] Add myself to Uploaders.
  * [b7ece9fc] Refreshing patches, dropping those which were applied upstream.

 -- Bernd Zeimetz   Fri, 03 Aug 2012 15:31:39 +0200

freeipmi (1.1.5-4) experimental; urgency=low

  [ Ferenc Wágner ]
  * Refresh lintian overrides
  * Fix typo (meta-package) in control file found by lintian
  * New quilt patch to fix upstream typos found by lintian
  * debian/control:
- remove duplicate Section fields
- add myself to Uploaders
- add ipmi-pet to freeipmi-tools description
  * debian/rules:
- make mode and ownership change on freeipmi.conf effective
- go to debhelper compatibility level 9, but keep away from multiarch
- keep both upstream ChangeLogs and provide the changelog symlink
- install manpages and documentation via dh_install and make use of
  --fail-missing
- trust dh_installdocs --link-doc to arrange things correctly
- clean up unused copy of bmc-watchdog default file to misspelled name
  * debian/copyright:
- Link to versioned licence texts (suggestion by lintian
  copyright-refers-to-symlink-license)
  * Install symlinks for dash-separated utility names
  * debian/source/options:
- Ignore files changed during build
  
  [ Yaroslav Halchenko ]
  * Listed the team as the Maintainer and moved myself into Uploaders
  * Point to team's GIT repository on alioth instead of a private one

 -- Yaroslav Halchenko   Wed, 11 Jul 2012
13:34:54 -0400

** Affects: freeipmi (Ubuntu)
 Importance: Undecided
 Assignee: Tiago Stürmer Daitx (tdaitx)
 Status: New

** Changed in: freeipmi (Ubuntu)
 Assignee: (unassigned) => Tiago Stürmer Daitx (tdaitx)

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

Title:
  Please merge freeipmi 1.4.11-1 (main) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/freeipmi/+bug/1527685/+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 1518800] Re: [MIR] dnspython3

2015-12-18 Thread Colin Watson
Moved to main.

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

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

Title:
  [MIR] dnspython3

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dnspython3/+bug/1518800/+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 1319644] Re: maas with no arguments gives bad advice

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

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

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

Title:
  maas with no arguments gives bad advice

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1319644/+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 1319644] Re: maas with no arguments gives bad advice

2015-12-18 Thread Leonardo Borda
** Patch added: "fixes trusty series"
   
https://bugs.launchpad.net/ubuntu/trusty/+source/maas/+bug/1319644/+attachment/4536935/+files/fix-maas.patch

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

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

Title:
  maas with no arguments gives bad advice

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1319644/+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 1527723] Re: package nginx-core 1.4.6-1ubuntu3.3 failed to install/upgrade: subprocess installed pre-removal script returned error exit status 7

2015-12-18 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 nginx in Ubuntu.
https://bugs.launchpad.net/bugs/1527723

Title:
  package nginx-core 1.4.6-1ubuntu3.3 failed to install/upgrade:
  subprocess installed pre-removal script returned error exit status 7

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nginx/+bug/1527723/+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 1527374] Re: privilege escalation on attach through ptrace

2015-12-18 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/1527374

Title:
  privilege escalation on attach through ptrace

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1527374/+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 1319644] Re: maas with no arguments gives bad advice

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

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

** Tags added: patch

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

Title:
  maas with no arguments gives bad advice

To manage notifications about this bug go to:
https://bugs.launchpad.net/maas/+bug/1319644/+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 1527723] [NEW] package nginx-core 1.4.6-1ubuntu3.3 failed to install/upgrade: subprocess installed pre-removal script returned error exit status 7

2015-12-18 Thread paradj
Public bug reported:

trying to upgrade nginx
security issue status unknown

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: nginx-core 1.4.6-1ubuntu3.3
ProcVersionSignature: Ubuntu 3.16.0-33.44~14.04.1-generic 3.16.7-ckt7
Uname: Linux 3.16.0-33-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.19
Architecture: amd64
Date: Fri Dec 18 14:05:36 2015
DuplicateSignature: package:nginx-core:1.4.6-1ubuntu3.3:subprocess installed 
pre-removal script returned error exit status 7
ErrorMessage: subprocess installed pre-removal script returned error exit 
status 7
InstallationDate: Installed on 2014-10-16 (427 days ago)
InstallationMedia: Xubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 (20140723)
RelatedPackageVersions:
 dpkg 1.17.5ubuntu5.5
 apt  1.0.1ubuntu2.10
SourcePackage: nginx
Title: package nginx-core 1.4.6-1ubuntu3.3 failed to install/upgrade: 
subprocess installed pre-removal script returned error exit status 7
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package third-party-packages trusty

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

Title:
  package nginx-core 1.4.6-1ubuntu3.3 failed to install/upgrade:
  subprocess installed pre-removal script returned error exit status 7

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nginx/+bug/1527723/+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 1527374] Re: privilege escalation on attach through ptrace

2015-12-18 Thread John Johansen
** Information type changed from Private Security to Public Security

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

Title:
  privilege escalation on attach through ptrace

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1527374/+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 1527685] Re: Please merge freeipmi 1.4.11-1 (main) from Debian unstable (main)

2015-12-18 Thread Ubuntu Foundations Team Bug Bot
The attachment "debdiff between debian 1.4.11-1 and the proposed merge
1.4.11-1ubuntu1" 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 freeipmi in Ubuntu.
https://bugs.launchpad.net/bugs/1527685

Title:
  Please merge freeipmi 1.4.11-1 (main) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/freeipmi/+bug/1527685/+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 1527709] [NEW] Update Xenial nginx to 1.9.9

2015-12-18 Thread Thomas Ward
Public bug reported:

NGINX in Debian had 1.9.6, which was the subject of a recent merge,
which successfully landed in Xenial.

While there is a Perl transition in progress, and any additional NGINX
versions will not immediately be available, it should still be
considered the usefulness of updating the nginx version to 1.9.9.
Typically, this would be done by a merge from Debian.  However, Debian
has not released an updated NGINX package, and remains at 1.9.6, even in
the Debian git repository (with only two additional changes not yet
included as it's not packaged).

I would like to see an Ubuntu-specific upload that would have 1.9.9
available for the Xenial repositories, with the potential for a merge
later from Debian.

--

Additional considerations during update consideration: 
 * Security Team Mandate: disable HTTP/2 in the package until further notice - 
This was already incorporated in the 1.9.6 merge, and the 1.9.9 upload should 
not affect this as the disablement of those features will still be in place.

--

Below are the upstream changelogs (http://nginx.org/en/CHANGES) between
1.9.6 and 1.9.7.  Additional features are great, however there are also
additional bugs fixed, expecially when proxying data via nginx (by
proxy_pass and other directives):

Changes with nginx 1.9.9 09 Dec
2015

*) Bugfix: proxying to unix domain sockets did not work when using
   variables; the bug had appeared in 1.9.8.


Changes with nginx 1.9.8 08 Dec 2015

*) Feature: pwritev() support.

*) Feature: the "include" directive inside the "upstream" block.

*) Feature: the ngx_http_slice_module.

*) Bugfix: a segmentation fault might occur in a worker process when
   using LibreSSL; the bug had appeared in 1.9.6.

*) Bugfix: nginx could not be built on OS X in some cases.


Changes with nginx 1.9.7 17 Nov 2015

*) Feature: the "nohostname" parameter of logging to syslog.

*) Feature: the "proxy_cache_convert_head" directive.

*) Feature: the $realip_remote_addr variable in the
   ngx_http_realip_module.

*) Bugfix: the "expires" directive might not work when using
variables.

*) Bugfix: a segmentation fault might occur in a worker process when
   using HTTP/2; the bug had appeared in 1.9.6.

*) Bugfix: if nginx was built with the ngx_http_v2_module it was
   possible to use the HTTP/2 protocol even if the "http2" parameter of
   the "listen" directive was not specified.

*) Bugfix: in the ngx_http_v2_module.

** Affects: nginx (Ubuntu)
 Importance: Wishlist
 Assignee: Thomas Ward (teward)
 Status: In Progress

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

Title:
  Update Xenial nginx to 1.9.9

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nginx/+bug/1527709/+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 1527685] Re: Please merge freeipmi 1.4.11-1 (main) from Debian unstable (main)

2015-12-18 Thread Tiago Stürmer Daitx
Temporary build also available at
https://launchpad.net/~tdaitx/+archive/ubuntu/openjdk/+sourcepub/5845178
/+listing-archive-extra

** Patch added: "debdiff between debian 1.4.11-1 and the proposed merge 
1.4.11-1ubuntu1"
   
https://bugs.launchpad.net/ubuntu/+source/freeipmi/+bug/1527685/+attachment/4536998/+files/debdiff_freeipmi_1.4.11-1_-_freeipmi_1.4.11-1ubuntu1.diff

** Tags added: patch

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

Title:
  Please merge freeipmi 1.4.11-1 (main) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/freeipmi/+bug/1527685/+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 1527723] Re: package nginx-core 1.4.6-1ubuntu3.3 failed to install/upgrade: subprocess installed pre-removal script returned error exit status 7

2015-12-18 Thread Thomas Ward
It looks like it tried to stop it but errored.  Do me a favor, and see
if it works when you have nginx running, as it should automatically try
and stop the server anyways...

sudo service nginx start


then run the upgrade...

sudo apt-get install -f


See if that resolves the failure error here.

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

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

Title:
  package nginx-core 1.4.6-1ubuntu3.3 failed to install/upgrade:
  subprocess installed pre-removal script returned error exit status 7

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nginx/+bug/1527723/+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 1527723] Re: package nginx-core 1.4.6-1ubuntu3.3 failed to install/upgrade: subprocess installed pre-removal script returned error exit status 7

2015-12-18 Thread paradj
not fresh install 
was installed and running
ran :
  ~/: sudo nginx -s stop
  ~/sudo service nginx stop

prior to install

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

Title:
  package nginx-core 1.4.6-1ubuntu3.3 failed to install/upgrade:
  subprocess installed pre-removal script returned error exit status 7

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nginx/+bug/1527723/+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 1527661] Re: Create new instance boot from rbd image failed (no image created in VMS pools), after upgrade lastest kilo build

2015-12-18 Thread prescolt
** Summary changed:

- Create new instance from image with ceph failed after udate from kilo to 
lastest kilo version
+ Create new instance  boot from rbd image failed (no image created in VMS 
pools),after upgrade lastest kilo build

** Description changed:

- After upgrade to the lastest version of openstack kilo, when i boot new 
instance from image the instance started failed with error message below.  I 
see nova do not create RBD volumes of glance image to Ceph VMS pool, my system 
worked correctly before. Please check my attach file for detail
+ After upgrade to the lastest version of openstack kilo, when i boot new 
instance from image the instance started failed with error message below.  I 
see nova do not create RBD volumes of glance image to Ceph VMS pool, this 
affect to swap and Ephemeral disk too my system worked correctly before. Please 
check my attach file for detail
  ===
  2015-12-18 22:07:56.590 1620300 DEBUG nova.virt.libvirt.rbd_utils 
[req-eab9562d-484f-432d-a9d7-0ab32ec99c23 0690b97b2bea47a8aeb4777856f473b2 
767b2f8a8b08403884269836420d34f0 - - -] rbd image 
352eb808-f7c3-405d-92b4-c29bf07a46f0_disk does not exist __init__ 
/usr/lib/python2.7/dist-packages/nova/virt/libvirt/rbd_utils.py:60
  2015-12-18 22:07:56.641 1620300 DEBUG nova.virt.libvirt.rbd_utils 
[req-eab9562d-484f-432d-a9d7-0ab32ec99c23 0690b97b2bea47a8aeb4777856f473b2 
767b2f8a8b08403884269836420d34f0 - - -] rbd image 
352eb808-f7c3-405d-92b4-c29bf07a46f0_disk does not exist __init__ 
/usr/lib/python2.7/dist-packages/nova/virt/libvirt/rbd_utils.py:60
  2015-12-18 22:15:12.033 1620300 DEBUG nova.virt.libvirt.rbd_utils 
[req-c07f3a3b-82de-41b5-9f91-e52a2295b0fa 0690b97b2bea47a8aeb4777856f473b2 
767b2f8a8b08403884269836420d34f0 - - -] rbd image 
40df5d10-6af1-49ea-bb5f-37a5e6ffa053_disk does not exist __init__ 
/usr/lib/python2.7/dist-packages/nova/virt/libvirt/rbd_utils.py:60
  2015-12-18 22:15:12.093 1620300 DEBUG nova.virt.libvirt.rbd_utils 
[req-c07f3a3b-82de-41b5-9f91-e52a2295b0fa 0690b97b2bea47a8aeb4777856f473b2 
767b2f8a8b08403884269836420d34f0 - - -] rbd image 
40df5d10-6af1-49ea-bb5f-37a5e6ffa053_disk does not exist __init__ 
/usr/lib/python2.7/dist-packages/nova/virt/libvirt/rbd_utils.py:60
  #
  
  2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d] do_log=False, semaphores=semaphores, 
delay=delay):
  2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d]   File 
"/usr/lib/python2.7/contextlib.py", line 17, in __ent
  er__
  2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d] return self.gen.next()
  2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d]   File 
"/usr/lib/python2.7/dist-packages/oslo_concurrency/lo
  ckutils.py", line 395, in lock
  2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d] ext_lock.acquire(delay=delay)
  2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d]   File 
"/usr/lib/python2.7/dist-packages/oslo_concurrency/lo
  ckutils.py", line 209, in acquire
  2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d] do_acquire()
  2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d]   File 
"/usr/lib/python2.7/dist-packages/oslo_concurrency/lo
  ckutils.py", line 158, in wrapper
  2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d] return r.call(func, *args, **kwargs)
  2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d]   File 
"/usr/lib/python2.7/dist-packages/retrying.py", line
  222, in call
  2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d] if not self.should_reject(attempt):
  2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d]   File 
"/usr/lib/python2.7/dist-packages/retrying.py", line
  206, in should_reject
  2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d] reject |= 
self._retry_on_exception(attempt.value[1])
  2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d]   File 
"/usr/lib/python2.7/dist-packages/oslo_concurrency/lockutils.py", line 130, in 
retry_on_exception
  2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d] 'exception': e,
  2015-12-18 22:27:48.308 1623512 TRACE nova.compute.manager [instance: 
3bf19259-4a86-4b9e-b358-15e59470231d] error: Unable to acquire lock on 

[Bug 1527374] Missing required logs.

2015-12-18 Thread Brad Figg
This bug is missing log files that will aid in diagnosing the problem.
>From a terminal window please run:

apport-collect 1527374

and then change the status of the bug to 'Confirmed'.

If, due to the nature of the issue you have encountered, you are unable
to run this command, please add a comment stating that fact and change
the bug status to 'Confirmed'.

This change has been made by an automated script, maintained by the
Ubuntu Kernel Team.

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

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

Title:
  privilege escalation on attach through ptrace

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1527374/+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 1516471] Re: systemd init scripts not setting correct conf file

2015-12-18 Thread Matt Kassawara
James,

Can you assist?

Thanks,
Matt

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

Title:
  systemd init scripts not setting correct conf file

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openstack-trove/+bug/1516471/+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 1318317] Re: openipmi startup script removes kernel modules

2015-12-18 Thread Nish Aravamudan
** Changed in: openipmi (Ubuntu)
 Assignee: Taco Screen team (taco-screen-team) => Nish Aravamudan (nacc)

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

Title:
  openipmi startup script removes kernel modules

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openipmi/+bug/1318317/+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 1526127] Re: node install error Unexpected error command: ['curtin', 'block-meta', 'simple']

2015-12-18 Thread Cliff Pangtono
Hi David,
1)  Will this curtin fix below (curtin to recognize internal / embedded
drives) make it to Installer v0.16?

2) Will Installer v0.16 includes latest VPP code for VMS 2.x?  Will the
VPP compiled on Haswell UCS?

I am ccing Wojciech and Dave for the 2nd question above.

Regards,
Cliff P


On 12/17/15, 9:03 AM, "Scott Moser"  wrote:

>fix committed in revno 322.
>
>
>** Changed in: curtin
>   Importance: Undecided => Medium
>
>** Changed in: curtin
>   Status: Confirmed => Fix Committed
>
>** Also affects: curtin (Ubuntu)
>   Importance: Undecided
>   Status: New
>
>** Changed in: curtin (Ubuntu)
>   Status: New => Confirmed
>
>** Changed in: curtin (Ubuntu)
>   Importance: Undecided => Medium
>
>-- 
>You received this bug notification because you are subscribed to the bug
>report.
>https://bugs.launchpad.net/bugs/1526127
>
>Title:
>  node install error Unexpected error command: ['curtin', 'block-meta',
>  'simple']
>
>Status in curtin:
>  Fix Committed
>Status in curtin package in Ubuntu:
>  Confirmed
>
>Bug description:
>  From the MAAS Gui, the logfile states the following:
>
>  'utf8' codec can't decode byte 0x80 in position 1799: invalid start byte
>  Installation failed with exception: Unexpected error while running
>command.
>  Command: ['curtin', 'block-meta', 'simple']
>  Exit code: 3
>  Reason: -
>  Stdout: "'utf8' codec can't decode byte 0x80 in position 1799: invalid
>start byte\n"
>  Stderr: ''
>
>  After proceeding further with the following debugging commands:
>
>  
>  /var/lib/cloud/instance/scripts/part-001 info
>  sudo su -
>  cd /curtin
>  bin/curtin -vv 
>
>  We found the lsblk command was returning things that curtin does not
>  like.  Curtin should probably be more flexible and not choke on a UUID
>  field that contains garbage
>
>To manage notifications about this bug go to:
>https://bugs.launchpad.net/curtin/+bug/1526127/+subscriptions

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

Title:
  node install error Unexpected error command: ['curtin', 'block-meta',
  'simple']

To manage notifications about this bug go to:
https://bugs.launchpad.net/curtin/+bug/1526127/+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 1318317] Re: openipmi startup script removes kernel modules

2015-12-18 Thread Nish Aravamudan
Jeremy,

Does this patch have any effect on your OpenPower system?

Thanks,
Nish

** Patch added: "lp1318317.v1.patch"
   
https://bugs.launchpad.net/ubuntu/+source/openipmi/+bug/1318317/+attachment/4537144/+files/lp1318317.v1.patch

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

Title:
  openipmi startup script removes kernel modules

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openipmi/+bug/1318317/+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 1512603] Re: nut-monitor systemd service is absent in nut-client package since Ubuntu vivid

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

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

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

Title:
  nut-monitor systemd service is absent in nut-client package since
  Ubuntu vivid

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nut/+bug/1512603/+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 1527661] Re: Create new instance boot from rbd image failed (no image created in VMS pools), after upgrade lastest kilo build

2015-12-18 Thread prescolt
nova do not exec command like this below in rootwrap
rbd import --pool dev 
/var/lib/nova/instances/_base/fa39bfedbadb92bcf9b129cfd2c5411c98454bf7 
b2332490-6319-409d-bff2-71d3004b9175_disk --image-format=2 --id dev --conf 
/etc/ceph/ceph.conf

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

Title:
  Create new instance  boot from rbd image failed (no image created in
  VMS pools),after upgrade lastest kilo build

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/1527661/+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 1174654] Re: qemu-system-x86_64 takes 100% CPU after host machine resumed from suspend to ram

2015-12-18 Thread varacanero
Same for me here, Ubuntu wily.
I'm using vagrant-libvirt, and my hosts also very often run wild with 100% cpu 
usage after suspend.

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

Title:
  qemu-system-x86_64 takes 100% CPU after host machine resumed from
  suspend to ram

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1174654/+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 1527685] Re: Please merge freeipmi 1.4.11-1 (main) from Debian unstable (main)

2015-12-18 Thread Mathew Hodson
** Changed in: freeipmi (Ubuntu)
   Importance: Undecided => Wishlist

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

Title:
  Please merge freeipmi 1.4.11-1 (main) from Debian unstable (main)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/freeipmi/+bug/1527685/+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 1318317] Re: openipmi startup script removes kernel modules

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

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

** Tags added: patch

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

Title:
  openipmi startup script removes kernel modules

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/openipmi/+bug/1318317/+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 1503098] Re: package rpcbind 0.2.1-2ubuntu2.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2015-12-18 Thread Launchpad Bug Tracker
[Expired for rpcbind (Ubuntu) because there has been no activity for 60
days.]

** Changed in: rpcbind (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  package rpcbind 0.2.1-2ubuntu2.2 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rpcbind/+bug/1503098/+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 1507153] Re: iptraf - wrong in data rate

2015-12-18 Thread Launchpad Bug Tracker
[Expired for iptraf (Ubuntu) because there has been no activity for 60
days.]

** Changed in: iptraf (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  iptraf - wrong in data rate

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/iptraf/+bug/1507153/+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 1507161] Re: package samba 2:4.1.17+dfsg-4ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2015-12-18 Thread Launchpad Bug Tracker
[Expired for samba (Ubuntu) because there has been no activity for 60
days.]

** Changed in: samba (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  package samba 2:4.1.17+dfsg-4ubuntu2 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 1

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