[Bug 1073478] Re: squid3 logrotate fails when squid is not running

2015-10-06 Thread Tiago Stürmer Daitx
The underlying issue here is that the upstart script does not wait long
enough for squid3 to finish.

By default, when squid3 receives a SIGTERM it will close the socket for
incoming connections and will wait for existing connections to complet.
How long it waits before forcefully closing those connections is
configured by the shutdown_lifetime directive - 30 seconds by default.

Current setting, SIGKILL after 5 seconds:
=
# strace -r -e trace=signal,file -p $(cat /var/run/squid3.pid)
Process 20865 attached - interrupt to quit
 0.00 --- SIGTERM (Terminated) @ 0 (0) ---
 0.000440 rt_sigreturn(0xf) = -1 EINTR (Interrupted system call)
 0.000418 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=118, ...}) 
= 0
 5.006483 +++ killed by SIGKILL +++

With "kill timeout 40" in upstart script, notice the pid file being unlinked 
(the ~30 seconds wait is due to the default value of shutdown_lifetime 
directive):
=
# strace -r -e trace=signal,file -p $(cat /var/run/squid3.pid)
Process 20805 attached - interrupt to quit
 0.00 --- SIGTERM (Terminated) @ 0 (0) ---
 0.000284 rt_sigreturn(0xf) = -1 EINTR (Interrupted system call)
 0.000402 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=118, ...}) 
= 0
31.611726 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=118, ...}) 
= 0
 0.001792 --- SIGCHLD (Child exited) @ 0 (0) ---
 0.000247 rt_sigreturn(0x) = 63
 0.006027 unlink("/var/run/squid3.pid") = 0
 0.000539 open("/proc/sys/kernel/ngroups_max", O_RDONLY) = 0
 0.000387 open("/etc/group", O_RDONLY|O_CLOEXEC) = 0
Process 20805 detached

Note that the current behavior is also quite bad and can corrupt cache
index files, which is a really bad thing as squid will take a long time
to start the next time when it detects a corrupted cache index file [1].

I'm willing to submit a SRU for this, but I wonder if we should replace
SIGTERM with SIGINT. Using SIGINT means that squid will drop outstanding
connections immediately and then proceed to write cache index files.
This will avoid squid slowing down shutdown times for users [2] and we
somewhat keep the current behavior (ie. the current 5-sec SIGKILL
already does that and I don't see anyone complaining).

With "kill signal SIGINT", which does not wait on outstanding connections:
=
# strace -r -e trace=signal,file -p $(cat /var/run/squid3.pid)
Process 20891 attached - interrupt to quit
 0.00 --- SIGINT (Interrupt) @ 0 (0) ---
 0.000312 rt_sigreturn(0x2) = -1 EINTR (Interrupted system call)
 0.000237 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=118, ...}) 
= 0
 1.123564 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=118, ...}) 
= 0
 0.000754 --- SIGCHLD (Child exited) @ 0 (0) ---
 0.000103 rt_sigreturn(0x) = 0
 0.002031 unlink("/var/run/squid3.pid") = 0
 0.000154 open("/proc/sys/kernel/ngroups_max", O_RDONLY) = 0
 0.000142 open("/etc/group", O_RDONLY|O_CLOEXEC) = 0
Process 20891 detached

Still, let me reiterate that even with SIGINT enabled I believe we
should still increase "kill timeout" somewhat as we surely want to avoid
any cache corruption. According to [1] we don't need to wait that much,
so I guess anything between 20~40 should be fine. Again, since issuing a
SIGKILL during cache write *WILL* corrupt it, it might be sane to wait
even longer for cases when the system is under high load and/or has a
lot of cache dirs - this would/should be quite rare anyway: in most
cases squid shutdown time with SIGINT should be under 5 secs.

Of course, since there is still a chance that SIGKILL does get issued,
we will also need the fix proposed in #1 because there's a chance the
pid file was not removed.

[1] http://lists.squid-cache.org/pipermail/squid-users/2015-July/004752.html
[2] http://askubuntu.com/questions/18127/squid3-starts-and-stops-slowly

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

Title:
  squid3 logrotate fails when squid is not running

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

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


[Bug 1502178] Re: update squid from 3.3.8 to 3.3.14

2015-10-06 Thread Robie Basak
** Tags added: upgrade-software-version

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

Title:
  update squid from 3.3.8 to 3.3.14

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

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


[Bug 1418590] Re: Instance is left in ACTIVE state even if rescue fails

2015-10-06 Thread OpenStack Infra
Reviewed:  https://review.openstack.org/155120
Committed: 
https://git.openstack.org/cgit/openstack/nova/commit/?id=a9e4e2c9a5aaa4d675057790816aa395bc27e9bc
Submitter: Jenkins
Branch:master

commit a9e4e2c9a5aaa4d675057790816aa395bc27e9bc
Author: George Shuklin 
Date:   Fri May 1 17:57:00 2015 +0300

If rescue failed set instance to ERROR

The compute API will allow attempting to rescue an instance that is in
active/stopped/error state.  The compute manager will power off the instance
before calling driver.rescue.

If the rescue call fails in the virt driver, we should set the instance
to ERROR state since we (1) know the instance is definitely not active since
the compute manager powered it off and (2) we don't know what failed in the
virt driver, so punting and putting the instance into ERROR state is better
than leaving it broken and not signaling that with the vm_state.

Co-Authored-By: Matt Riedemann 

Closes-Bug: 1418590
Change-Id: Ia1054d3f9193f876803f8b5a26d00bd9d5d66c12


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

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

Title:
  Instance is left in ACTIVE state even if rescue fails

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

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


[Bug 1312304] Re: [systemd] libvirt-bin should get a unit file

2015-10-06 Thread Bryan Quigley
This was fixed from
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/1480440

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

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

Title:
  [systemd] libvirt-bin should get a unit file

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

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


[Bug 1447142] Re: systemd: ntpdate is started too soon (before the network)

2015-10-06 Thread Robie Basak
Thank you for reporting this bug and helping to make Ubuntu better.

Can you explain why this is actually a problem please? Won't timesyncd
suffice on a desktop that uses NetworkManager now? Is the time on your
system actually falling out of sync, or is the problem just the noise of
the error message?

** Changed in: ntp (Ubuntu)
   Status: Confirmed => Incomplete

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

Title:
  systemd: ntpdate is started too soon (before the network)

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

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


[Bug 1499392] Re: OpenSSH Security and SHA1

2015-10-06 Thread Eldin Hadzic
Hello Colin, Hello Seth,

Seth that sounds great :-). I totally agree you.

Colin and that´s the same Problem we had on Scaleway, but I am sure that
we are finding a solution :-).

I would love to participate @ the discussion.

Have a nice day,

Eldin Hadzic

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

Title:
  OpenSSH Security and SHA1

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

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


[Bug 1503330] [NEW] New upstream bugfix release 1.1.4 (LXC MRE)

2015-10-06 Thread Stéphane Graber
Public bug reported:

We have released LXC 1.1.4 upstream:
https://linuxcontainers.org/lxc/news

This will be the first and last upstream bugfix release to hit vivid.
The upstream changes are detailed at the URL above.

The MRE was reviewed by Martin Pitt here:
https://lists.ubuntu.com/archives/technical-board/2014-April/001869.html

As for testing, this version went through both automated testing (all
the tests present in lxc-tests + the python3 API tests) as well as
manual testing done by myself, LXC contributors and LXC users who've
been building the git stable branch for a while now.

Until now, vivid was on a patched version of 1.1.2, basically 1.1.2 +
security updates. LXC 1.1.4 contains all those same security updates, a
bunch more bugfixes (160 or so when combining 1.1.3 and 1.1.4 together).
This also makes the LXC in both vivid and wily to be identical,
simplifying maintenance until vivid goes EOL.

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

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

Title:
  New upstream bugfix release 1.1.4 (LXC MRE)

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

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


[Bug 1194310] Re: cachemgr.cgi crashes after login

2015-10-06 Thread Robie Basak
I'll close for now. Please reopen if I'm mistaken.

** Changed in: squid3 (Ubuntu)
   Status: Incomplete => Fix Released

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

Title:
  cachemgr.cgi crashes after login

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

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


[Bug 1503305] Re: iLab: power kvm client after svc node reboot error inject test, multipath output show missing path and missing storage name

2015-10-06 Thread Gary Gaydos
** Package changed: ubuntu => multipath-tools (Ubuntu)

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

Title:
  iLab: power kvm client after svc node reboot error inject test,
  multipath output show missing path and missing storage name

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/multipath-tools/+bug/1503305/+subscriptions

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


[Bug 1391159] Re: squid3 is not built with helper /usr/lib/squid3/ext_time_quota_acl

2015-10-06 Thread Robie Basak
** Summary changed:

- squid3 : missing helper /usr/lib/squid3/ext_time_quota_acl
+ squid3 is not built with helper /usr/lib/squid3/ext_time_quota_acl

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

Title:
  squid3 is not built with helper /usr/lib/squid3/ext_time_quota_acl

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

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


[Bug 1447142] Re: systemd: ntpdate is started too soon (before the network)

2015-10-06 Thread Robie Basak
Once you're replied, please change the bug status back to New.

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

Title:
  systemd: ntpdate is started too soon (before the network)

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

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


[Bug 1503216] modified.conffile..etc.init.php5.fpm.conf.txt

2015-10-06 Thread Bartosz Cisek
apport information

** Attachment added: "modified.conffile..etc.init.php5.fpm.conf.txt"
   
https://bugs.launchpad.net/bugs/1503216/+attachment/4486038/+files/modified.conffile..etc.init.php5.fpm.conf.txt

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

Title:
  php crash with SIGSEGV in zend_mm_add_to_free_list

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

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


[Bug 1503216] modified.conffile..etc.php5.fpm.php.fpm.conf.txt

2015-10-06 Thread Bartosz Cisek
apport information

** Attachment added: "modified.conffile..etc.php5.fpm.php.fpm.conf.txt"
   
https://bugs.launchpad.net/bugs/1503216/+attachment/4486039/+files/modified.conffile..etc.php5.fpm.php.fpm.conf.txt

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

Title:
  php crash with SIGSEGV in zend_mm_add_to_free_list

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

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


[Bug 525674] Re: apt-check hangs, preventing login via SSH

2015-10-06 Thread ChristianEhrhardt
** Patch added: "Fix for upstream"
   
https://bugs.launchpad.net/ubuntu/+source/update-notifier/+bug/525674/+attachment/4486128/+files/upstream_package.debdiff

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

Title:
  apt-check hangs, preventing login via SSH

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-notifier/+bug/525674/+subscriptions

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


[Bug 525674] Re: apt-check hangs, preventing login via SSH

2015-10-06 Thread ChristianEhrhardt
Other MOTD plugins use caching, for example 
/usr/lib/update-notifier/update-motd-reboot-required does:
if [ -f /var/run/reboot-required ]; then
cat /var/run/reboot-required
fi

Actually /usr/lib/update-notifier/update-motd-updates-available already uses 
"caching" like the others.
It stores its result in:
  /var/lib/update-notifier/updates-available
This is what the call to "/usr/lib/update-notifier/apt-check --human-readable" 
writes into

But it executes slow commands like find apt-check synchronously.
Yes a cron job might be nice, but it is rather "invasive" in changing the 
general behaviour maybe more than required.

Why not just executing the "slow parts" like find and apt-check asynchronously.
One can still evolve that approach later on an move (instead or additionally) 
the async part into a cron job if required.

It comes at "the risk" of having one outdated info on login.
But since updates don't change every second anyway it is probably better than 
waiting on each login.
Especially with all the examples made like scp tabbing, slow network and so on.

The atomicity issue with updating the temporary file already exists in
todays code with regards to concurrent logins. But we can improve that
as well by using a temporary file and mv.

The following are suggestions to fix it in trusty, vivid, wily and
upstream.

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

Title:
  apt-check hangs, preventing login via SSH

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-notifier/+bug/525674/+subscriptions

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


[Bug 525674] Re: apt-check hangs, preventing login via SSH

2015-10-06 Thread ChristianEhrhardt
** Patch added: "Fix for vivid"
   
https://bugs.launchpad.net/ubuntu/+source/update-notifier/+bug/525674/+attachment/4486126/+files/vivid_package.debdiff

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

Title:
  apt-check hangs, preventing login via SSH

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-notifier/+bug/525674/+subscriptions

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


[Bug 525674] Re: apt-check hangs, preventing login via SSH

2015-10-06 Thread ChristianEhrhardt
** Patch added: "Fix for trusty"
   
https://bugs.launchpad.net/ubuntu/+source/update-notifier/+bug/525674/+attachment/4486125/+files/trusty_package.debdiff

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

Title:
  apt-check hangs, preventing login via SSH

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-notifier/+bug/525674/+subscriptions

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


[Bug 701854] Re: E501 mistake

2015-10-06 Thread Robie Basak
Wily has 1.6.2 which was released upstream on 2015-02-15. So given
Florent's comment that this was fixed upstream in 2013 I think it's safe
to assume that this is now fixed (in Wily at least).

If my assumption is false, then please state which version is still
affected and then reopen.

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

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

Title:
  E501 mistake

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

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


[Bug 1503305] [NEW] iLab: power kvm client after svc node reboot error inject test, multipath output show missing path and missing storage name

2015-10-06 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

== Comment: #0 - Yueh Chyong Jackson  - 2015-01-27 16:54:58 ==
---Problem Description---
power kvm client ubuntu ilp1fc85apA4 after error injection test (SVC node 
reboot), the multipath output show one path with #:#:#:#  and did not show the 
storage name:
mpath6 (3600507680284066f18000172) dm-6 , <-(missing storage 
name)
size=3.0G features='1 queue_if_no_path' hwhandler='0' wp=rw
|-+- policy='round-robin 0' prio=50 status=active
| |- #:#:#:# -#:#failed faulty running   
<
| `- 4:0:7:0 sdbr 68:80  active ready  running
`-+- policy='round-robin 0' prio=10 status=enabled
  |- 4:0:9:0 sdbq 68:64  active ready  running
  `- 3:0:7:0 sdby 68:192 active ready  running

this is a storage IBM svc storage


 
---uname output---
power kvm server: [root@ilp1fc85a ~]# uname -a Linux 
ilp1fc85a.tuc.stglabs.ibm.com 3.10.42-2018.1.pkvm2_1_1.46.ppc64 #1 SMP Fri  Oct 
17 10:41:35 CDT 2014 ppc64 ppc64 ppc64 GNU/Linux, 
client uname : root@ilp1fc85apA4:~# uname -a Linux 
ilp1fc85apA4.tuc.stglabs.ibm.com 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 
19:09:21 UTC 2014 ppc64le ppc64le ppc64le GNU/Linux
 
---Additional Hardware Info---
4 adapters, coho, bluefin, houston,houston FCoE, with following storages:
DS8800,TMS, xiv gen2, svc V7k ,texan, texan FCoE, client  lun that use for 
running tests(data lun) are passthrough

access to machines:
power kvm server: ilp1fc85a 9.11.56.126 (ssh root/B!gm0ney)
client: ilp1fc85apA4 9.11.56.72 (ssh root/B!gmoney)

the logs are save at: 
ip: 9.11.56.167(root/teamw0rk), under file:
/root/bflocal/CYCLE18/CheckHostStatus_V2/CYCLE18_226/scripts/9.11.56.72.hostcheck.CHS.svc_nr.stop.20150127073959

ip: 9.11.56.168 (root/teamw0rk), under file:
/PACKAGE/errlogs/Cycle18/SVC_NR/20150127081651/
c_85_g.ilp1fc85apA4.SVC_NR.Cycle18.27Jan15.081758.tar.gz
 

 
Machine Type = IBM Power System S824, product: 8286-42A,serial: 10CD74T 
 
---Debugger---
A debugger is not configured
 
Contact Information = ida jackson/i...@us.ibm.com, cwc...@us.ibm.com 
 
Stack trace output:
 no
 
Oops output:
 no
 
System Dump Info:
  The system is not configured to capture a system dump.
 
*Additional Instructions for ida jackson/i...@us.ibm.com, cwc...@us.ibm.com: 
-Post a private note with access information to the mach
ine that the bug is occuring on. 
-Attach sysctl -a output output to the bug.

please let me know if other info is needed. thanks for looking into the
problem

== Comment: #9 - Vaishnavi Bhat  - 2015-02-11
04:11:40 ==


== Comment: #17 - Andrea M. Davis  - 2015-03-03 17:57:51 ==
Please update the bug with the specific Ubunutu release please Ida  or Chang.

== Comment: #18 - Andrea M. Davis  - 2015-03-03 17:57:56 ==
Please update the bug with the specific Ubunutu release please Ida  or Chang.

== Comment: #19 - Mauricio Faria De Oliveira  - 2015-03-04 
08:17:23 ==
This is Ubuntu 14.04 GA (14.04.0), using the ISO/DVD install (kernel 3.13.0-24).

> client uname : root@ilp1fc85apA4:~# uname -a Linux
ilp1fc85apA4.tuc.stglabs.ibm.com 3.13.0-24-generic #46-Ubuntu SMP Thu
Apr 10 19:09:21 UTC 2014 ppc64le ppc64le ppc64le GNU/Linux

This version is way old (2014/04) for a bug reported on 2015/1, in
Ubuntu's fast pace.

Do the guest has any* other updates applied? (i.e., apt-get update && apt-get 
upgrade)
It seems there are no kernel upgrades as well?(i.e., apt-get update && apt-get 
dist-upgrade)

Any reason for not testing 14.04.1 or 14.04.2? (you can bump to it w/
dist-upgrade)

== Comment: #20 - Brian J. King  - 2015-03-04 10:11:57 ==
(In reply to comment #19)
> This is Ubuntu 14.04 GA (14.04.0), using the ISO/DVD install (kernel
> 3.13.0-24).


Also keep in mind that you need at *least* 14.04.1 in order to be able to do 
PCI passthrough with PowerKVM.

== Comment: #29 - Gabriel Krisman Bertazi  - 2015-09-30 
15:38:23 ==
The attached patch should fix this issue.  Mauricio, please tell me what you 
think.

== Comment: #30 - Mauricio Faria De Oliveira  - 2015-10-02 
09:52:01 ==
Gabriel,

Looks good to me.
Good discussion yesterday while traveling.

Let's hear on dm-devel.

Thanks!

== Comment: #32 - Gabriel Krisman Bertazi  - 2015-10-06 
08:28:24 ==
Patch is applied to Christophe's tree. 
.

Now, let's get it downstream into Ubuntu.

== Comment: #34 - Gabriel Krisman Bertazi  - 2015-10-06 
08:55:40 ==
Christophe Varoqui applied this patch to his multipath-tools tree 
.  

We would like it to be backported to Ubuntu to close this bug.

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


** Tags: architecture-ppc64le bugnameltc-120998 

[Bug 1502624] Re: package squid3 3.3.8-1ubuntu6.3 failed to install/upgrade: подпроцесс установлен сценарий post-installation возвратил код ошибки 255

2015-10-06 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Since it seems likely to me that this is a local configuration problem,
rather than a bug in Ubuntu, I'm marking this bug as Incomplete.

If indeed this is a local configuration problem, you can find pointers
to get help for this sort of problem here:
http://www.ubuntu.com/support/community

Or 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: squid3 (Ubuntu)
   Status: New => Incomplete

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

Title:
  package squid3 3.3.8-1ubuntu6.3 failed to install/upgrade: подпроцесс
  установлен сценарий post-installation возвратил код ошибки 255

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

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


[Bug 1459638] Re: maximum_object_size has no effect in default configuration file

2015-10-06 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/1459638

Title:
  maximum_object_size has no effect in default configuration file

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

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


[Bug 1500981] Re: juju-db segfault while syncing with replicas

2015-10-06 Thread Robie Basak
Thank you for the report JuanJo.

I think action needs to be taken here in Juju first to isolate a failure
case for the juju-mongodb package in Ubuntu. Until then, we can't work
on it from a juju-mongodb perspective, so marking Incomplete.

** Changed in: juju-mongodb (Ubuntu)
   Status: New => Incomplete

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

Title:
  juju-db segfault while syncing with replicas

To manage notifications about this bug go to:
https://bugs.launchpad.net/juju-core/+bug/1500981/+subscriptions

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


[Bug 1501966] Re: support changing Apparmor hats

2015-10-06 Thread Robie Basak
** Changed in: openssh (Ubuntu)
   Importance: Undecided => Wishlist

** Tags added: needs-upstream-report

-- 
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 1503311] Re: FTBFS due to failing unit tests

2015-10-06 Thread Bug Watch Updater
** Changed in: python-traceback2 (Debian)
   Status: Unknown => Fix Released

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

Title:
  FTBFS due to failing unit tests

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-traceback2/+bug/1503311/+subscriptions

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


[Bug 525674] Re: apt-check hangs, preventing login via SSH

2015-10-06 Thread ChristianEhrhardt
** Patch added: "Fix for wily"
   
https://bugs.launchpad.net/ubuntu/+source/update-notifier/+bug/525674/+attachment/4486127/+files/wily_package.debdiff

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

Title:
  apt-check hangs, preventing login via SSH

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-notifier/+bug/525674/+subscriptions

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


[Bug 1503216] PHPInstalledModules.txt

2015-10-06 Thread Bartosz Cisek
apport information

** Attachment added: "PHPInstalledModules.txt"
   
https://bugs.launchpad.net/bugs/1503216/+attachment/4486036/+files/PHPInstalledModules.txt

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

Title:
  php crash with SIGSEGV in zend_mm_add_to_free_list

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

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


[Bug 1503216] Re: php crash with SIGSEGV in zend_mm_add_to_free_list

2015-10-06 Thread Bartosz Cisek
apport information

** Tags added: apport-collected trusty

** Description changed:

  PHP crash in zend_mm_add_to_free_list
+ --- 
+ ApportVersion: 2.14.1-0ubuntu3.15
+ Architecture: amd64
+ DistroRelease: Ubuntu 14.04
+ InstallationDate: Installed on 2014-11-21 (319 days ago)
+ InstallationMedia: Ubuntu-Server 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140722.3)
+ Package: php5-fpm 5.5.9+dfsg-1ubuntu4.13
+ PackageArchitecture: amd64
+ ProcVersionSignature: Ubuntu 3.13.0-65.105-generic 3.13.11-ckt26
+ Tags:  trusty
+ Uname: Linux 3.13.0-65-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups:
+  
+ _MarkForUpload: True
+ modified.conffile..etc.php5.fpm.pool.d.www.conf: [deleted]
+ mtime.conffile..etc.init.php5.fpm.conf: 2015-01-14T12:46:43.805686
+ mtime.conffile..etc.php5.fpm.php.fpm.conf: 2015-09-24T20:01:05.256597

** Attachment added: "Dependencies.txt"
   
https://bugs.launchpad.net/bugs/1503216/+attachment/4486035/+files/Dependencies.txt

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

Title:
  php crash with SIGSEGV in zend_mm_add_to_free_list

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

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


[Bug 1503216] ProcEnviron.txt

2015-10-06 Thread Bartosz Cisek
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1503216/+attachment/4486037/+files/ProcEnviron.txt

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

Title:
  php crash with SIGSEGV in zend_mm_add_to_free_list

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

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


[Bug 1405351] Re: First run: Failed to verify one of the swap directories

2015-10-06 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Since we're on systemd now, this presumably only affects Trusty and
maybe Precise, so marking Fix Released in the development release and
leaving a Trusty task open instead.

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

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

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

Title:
  First run: Failed to verify one of the swap directories

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

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


[Bug 1499869] Re: maas wily deployment to HP Proliant m400 arm64 server cartridge fails

2015-10-06 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/trusty-proposed/linux-lts-vivid

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

Title:
  maas wily deployment to HP Proliant m400 arm64 server cartridge fails

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-init/+bug/1499869/+subscriptions

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


[Bug 1460177] Re: Support metadata service with IPv6-only tenant network

2015-10-06 Thread Armando Migliaccio
** Tags removed: rfe
** Tags added: rfe-approved

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

Title:
  Support metadata service with IPv6-only tenant network

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

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


[Bug 1503153] Re: package libapache2-mod-perl2 2.0.8+httpd24-r1449661-6ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2015-10-06 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 libapache2-mod-perl2 in Ubuntu.
https://bugs.launchpad.net/bugs/1503153

Title:
  package libapache2-mod-perl2 2.0.8+httpd24-r1449661-6ubuntu2 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/libapache2-mod-perl2/+bug/1503153/+subscriptions

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


[Bug 1503153] [NEW] package libapache2-mod-perl2 2.0.8+httpd24-r1449661-6ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2015-10-06 Thread vineel kumar vemulapalli
Public bug reported:

Building dependency tree   
Reading state information... Done
libapache2-mod-perl2 is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
2 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n] y
Setting up libapache2-mod-perl2 (2.0.8+httpd24-r1449661-6ubuntu2) ...
dpkg: error processing package libapache2-mod-perl2 (--configure):
 subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of libapache2-reload-perl:
 libapache2-reload-perl depends on libapache2-mod-perl2; however:
  Package libapache2-mod-perl2 is not configured yet.

dpkg: error processing package libapache2-reload-perl (--configure):
 dependency problems - leaving unconfigured
No apport report written because the error message indicates its a followup 
error from a previous failure.
  Errors were encountered while processing:
 libapache2-mod-perl2
 libapache2-reload-perl
E: Sub-process /usr/bin/dpkg returned an error code (1)

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: libapache2-mod-perl2 2.0.8+httpd24-r1449661-6ubuntu2
ProcVersionSignature: Ubuntu 3.13.0-65.106-generic 3.13.11-ckt26
Uname: Linux 3.13.0-65-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.16
Architecture: amd64
Date: Tue Oct  6 12:26:55 2015
DuplicateSignature: 
package:libapache2-mod-perl2:2.0.8+httpd24-r1449661-6ubuntu2:subprocess 
installed post-installation script returned error exit status 1
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2015-09-22 (14 days ago)
InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 (20140722.2)
RelatedPackageVersions:
 dpkg 1.17.5ubuntu5.4
 apt  1.0.1ubuntu2.10
SourcePackage: libapache2-mod-perl2
Title: package libapache2-mod-perl2 2.0.8+httpd24-r1449661-6ubuntu2 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)
modified.conffile..etc.apache2.mods.available.perl.load: [deleted]

** Affects: libapache2-mod-perl2 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package trusty

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

Title:
  package libapache2-mod-perl2 2.0.8+httpd24-r1449661-6ubuntu2 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/libapache2-mod-perl2/+bug/1503153/+subscriptions

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


[Bug 1502362] Re: Linux bridge agent should use agent config file in Liberty

2015-10-06 Thread Launchpad Bug Tracker
This bug was fixed in the package neutron - 2:7.0.0~rc1-0ubuntu5

---
neutron (2:7.0.0~rc1-0ubuntu5) wily; urgency=medium

  * d/neutron-common.install: Install ebtables filters (LP: #1502363).
  * d/neutron-plugin-openvswitch-agent.{init.in,upstart.in}: Add agent
specific configuration file to daemon arguments (LP: #1502364).
  * d/neutron-plugin-linuxbridge-agent.init.in: Add agent specific
configuration file to daemon arguments (LP: #1502362).
  * d/control: Add dependency on ebtables for linuxbridge agent
(LP: #1502362).
  * d/control,neutron-plugin-sriov-agent.init.in: Add missing dependency
from sriov-agent -> neutron-plugin-ml2, add agent specific
configuration file to daemon arguments.

 -- James Page   Mon, 05 Oct 2015 08:54:20 +0100

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

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

Title:
  Linux bridge agent should use agent config file in Liberty

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

-- 
Ubuntu-server-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] Comment bridged from LTC Bugzilla

2015-10-06 Thread bugproxy
--- Comment From ppaid...@in.ibm.com 2015-10-06 07:21 EDT---
Hi
Tried in-band firmware flash with the proposed ipmitool 
https://launchpad.net/ubuntu/+source/ipmitool/1.8.13-1ubuntu0.4
It's working fine

Below are the results of in-band update.

1.Firmware level before flash
[pridhiviraj@localhost ~]$  ipmitool -I lanplus -H 9.40.193.53 -U ADMIN -P 
admin fru print 47
Product Name  : OpenPOWER Firmware
Product Version   : IBM-firestone-ibm-OP8_PFD_v1.6_0.29
Product Extra : hostboot-6847d73-b8d7c0a
Product Extra : occ-0726e69
Product Extra : skiboot-5.1.3-6221bd2
Product Extra : hostboot-binaries-43d5a59
Product Extra : firestone-xml-db1a93e-4ae8032
Product Extra : capp-ucode-105cb8f
[pridhiviraj@localhost ~]$

2.Verified the version of kernel and ipmitool
ubuntu@ltc-fire8:~$
ubuntu@ltc-fire8:~$ uname -a
Linux ltc-fire8 3.19.0-30-generic #33~14.04.1-Ubuntu SMP Tue Sep 22 09:27:51 
UTC 2015 ppc64le ppc64le ppc64le GNU/Linux
ubuntu@ltc-fire8:~$ cat /etc/os-release
NAME="Ubuntu"
VERSION="14.04.3 LTS, Trusty Tahr"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 14.04.3 LTS"
VERSION_ID="14.04"
HOME_URL="http://www.ubuntu.com/;
SUPPORT_URL="http://help.ubuntu.com/;
BUG_REPORT_URL="http://bugs.launchpad.net/ubuntu/;
ubuntu@ltc-fire8:~$
ubuntu@ltc-fire8:~$
ubuntu@ltc-fire8:~$ which ipmitool
/usr/bin/ipmitool
ubuntu@ltc-fire8:~$ dpkg -S /usr/bin/ipmitool
ipmitool: /usr/bin/ipmitool
ubuntu@ltc-fire8:~$ dpkg --list | grep ipmitool
ii  ipmitool1.8.13-1ubuntu0.4   
   ppc64el  utility for IPMI control with kernel driver or LAN interface
ubuntu@ltc-fire8:~$ ipmitool -V
ipmitool version 1.8.13
ubuntu@ltc-fire8:~$

ubuntu@ltc-fire8:~$ ipmitool -I usb power status
Chassis Power is on

3.Firmware in-band upgrade done according to the steps mentioned in driver 
release notes 
http://pfd.austin.ibm.com/releasenotes/firenze/op810/OP810_1539A/OP810_1539D_RelNote_Main.html.
 Here upgradation done for all components at a time as mentioned in release 
notes above.
ubuntu@ltc-fire8:~$ ls
8335_810.1539.20150930n_update.hpm
ubuntu@ltc-fire8:~$

ubuntu@ltc-fire8:~$ ipmitool -I usb mc reset cold
Error while reading CD-Drive
ReadCD returned ERROR
WaitForCommandComplete failed
Error while writing to CD-Drive
Error in WriteSplitData of SCSI_AMIDEF_DATA_SECTOR
sendscsicmd_SGIO:  SG_IO ioctl error
sendscsicmd_SGIO:  SG_IO ioctl error
sendscsicmd_SGIO:  SG_IO ioctl error
Error while writing to CD-Drive
Error in Write CD of SCSI_AMIDEF_CMD_SECTOR
Error while sending command using
MC reset command failed: Unspecified error

[pridhiviraj@localhost ~]$  ipmitool -I lanplus -H 9.40.193.53 -U ADMIN -P 
admin power off
Chassis Power Control: Down/Off
[pridhiviraj@localhost ~]$  ipmitool -I lanplus -H 9.40.193.53 -U ADMIN -P 
admin power status
Chassis Power is off
[pridhiviraj@localhost ~]$  ipmitool -I lanplus -H 9.40.193.53 -U ADMIN -P 
admin power on
Chassis Power Control: Up/On
[pridhiviraj@localhost ~]$  ipmitool -I lanplus -H 9.40.193.53 -U ADMIN -P 
admin power status
Chassis Power is on
[pridhiviraj@localhost ~]$

ubuntu@ltc-fire8:~$ ipmitool -I usb raw 0x32 0xBA 0x00 0x00

ubuntu@ltc-fire8:~$ ipmitool -v -I usb hpm upgrade 
8335_810.1539.20150930n_update.hpm -z 32767 force
Setting large buffer to 32767

PICMG HPM.1 Upgrade Agent 1.0.9:

TARGET UPGRADE CAPABILITIES
---
HPM.1 version0
Component 0 presence[y]
Component 1 presence[y]
Component 2 presence[y]
Component 3 presence[n]
Component 4 presence[n]
Component 5 presence[n]
Component 6 presence[n]
Component 7 presence[n]
Upgrade undesirable.[n]
Aut rollback override...[n]
IPMC degraded...[y]
Defered activation..[y]
Service affected[y]
Manual rollback.[n]
Automatic rollback..[n]
Self test...[y]
Upgrade timeout.[1275 sec]
Self test timeout...[5 sec]
Rollback timeout[1275 sec]
Inaccessibility timeout.[25 sec]

GENERAL PROPERTIES
---
Payload cold reset req[y]
Def. activation supported.[y]
Comparison supported..[y]
Preparation supported.[y]
Rollback supported[n]

Description string: BOOT

Current Version:
Major: 2
Minor: 8
Aux  : 210 071 001 000

Error getting component properties
compcode=0x83: Unknown (0x83)
Get CompRollbackVersion Failed for component Id 0

GENERAL PROPERTIES
---
Payload cold reset req[y]
Def. activation supported.[y]
Comparison supported..[y]
Preparation supported.[y]
Rollback supported[n]

Description string: APP

Current Version:
Major: 2
Minor: 8
Aux  : 210 071 001 000

Error getting component properties
compcode=0x83: Unknown (0x83)
Get CompRollbackVersion Failed for component Id 1

GENERAL PROPERTIES
---
Payload cold reset req[y]
Def. 

[Bug 1502363] Re: Linux bridge agent should include ebtables package and rootwrap rule

2015-10-06 Thread Launchpad Bug Tracker
This bug was fixed in the package neutron - 2:7.0.0~rc1-0ubuntu5

---
neutron (2:7.0.0~rc1-0ubuntu5) wily; urgency=medium

  * d/neutron-common.install: Install ebtables filters (LP: #1502363).
  * d/neutron-plugin-openvswitch-agent.{init.in,upstart.in}: Add agent
specific configuration file to daemon arguments (LP: #1502364).
  * d/neutron-plugin-linuxbridge-agent.init.in: Add agent specific
configuration file to daemon arguments (LP: #1502362).
  * d/control: Add dependency on ebtables for linuxbridge agent
(LP: #1502362).
  * d/control,neutron-plugin-sriov-agent.init.in: Add missing dependency
from sriov-agent -> neutron-plugin-ml2, add agent specific
configuration file to daemon arguments.

 -- James Page   Mon, 05 Oct 2015 08:54:20 +0100

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

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

Title:
  Linux bridge agent should include ebtables package and rootwrap rule

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

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


[Bug 1502364] Re: OVS agent should use agent config file in Liberty

2015-10-06 Thread Launchpad Bug Tracker
This bug was fixed in the package neutron - 2:7.0.0~rc1-0ubuntu5

---
neutron (2:7.0.0~rc1-0ubuntu5) wily; urgency=medium

  * d/neutron-common.install: Install ebtables filters (LP: #1502363).
  * d/neutron-plugin-openvswitch-agent.{init.in,upstart.in}: Add agent
specific configuration file to daemon arguments (LP: #1502364).
  * d/neutron-plugin-linuxbridge-agent.init.in: Add agent specific
configuration file to daemon arguments (LP: #1502362).
  * d/control: Add dependency on ebtables for linuxbridge agent
(LP: #1502362).
  * d/control,neutron-plugin-sriov-agent.init.in: Add missing dependency
from sriov-agent -> neutron-plugin-ml2, add agent specific
configuration file to daemon arguments.

 -- James Page   Mon, 05 Oct 2015 08:54:20 +0100

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

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

Title:
  OVS agent should use agent config file in Liberty

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

-- 
Ubuntu-server-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] [NEW] [REGRESSION] launching byobu from unity uses the terminal icon rather than the application icon

2015-10-06 Thread Dustin Kirkland 
Public bug reported:

I just upgraded to Wily yesterday, and it seems this regression has
crept up again (it happened around the Utopic timeframe too).

Install Byobu.

sudo apt-get install byobu

Open from the Unity Launcher.  Press Windows icon.  Type 'byobu'.  Click
on the Ubuntu terminal icon.  Byobu open in the default terminal (as
specified in the byobu.desktop file), but the icon on the left in the
unity bar is the Terminal icon, not the Byobu one.

** Affects: byobu (Ubuntu)
 Importance: Medium
 Assignee: Dustin Kirkland  (kirkland)
 Status: Invalid

** Affects: unity (Ubuntu)
 Importance: Undecided
 Assignee: Marco Trevisan (Treviño) (3v1n0)
 Status: New

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

** Changed in: byobu (Ubuntu)
   Status: New => Invalid

** Changed in: byobu (Ubuntu)
   Importance: Undecided => Medium

** Changed in: byobu (Ubuntu)
 Assignee: (unassigned) => Dustin Kirkland  (kirkland)

-- 
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:
  [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/ubuntu/+source/byobu/+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


Re: [Bug 1501189] Re: DNS breaks when port=0 is used in dnsmasq.conf

2015-10-06 Thread Simon Kelley
*** This bug is a duplicate of bug 1042275 ***
https://bugs.launchpad.net/bugs/1042275

On 06/10/15 11:08, Alkis Georgopoulos wrote:
> Hi Robie,
> 
> while this also happens in Debian, the use case is more common in Ubuntu, 
> because NetworkManager is patched to use a spawned dnsmasq instance as a 
> local resolver, and mixing the two DNS servers is problematic (neither 
> bind-dynamic nor bind-interfaces work very well).
> In Debian they more frequently use the normal dnsmasq/DNS service as it was 
> designed, because NM doesn't spawn a local resolver there.
> 
> For upstream report, Simon (the upstream dnsmasq developer and Debian
> maintainer) already answered here, Simon would you like me to file a
> debian bug as well? It's easy to work around this issue, so we can even
> close it with won't fix if you prefer.
> 
> Thank you.
> 

No need to file a Debian bug, whatever fix goes in will go into upstream
and Debian anyway.

Cheers,

Simon.

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

Title:
  DNS breaks when port=0 is used in dnsmasq.conf

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

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


[Bug 1503286] Re: ISST-LTE: Boot of Ubuntu15.10 lpar fails: "mounting /dev/sdn2 on /root failed: Device or resource busy" [multipath]

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

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

** Tags added: patch

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

Title:
  ISST-LTE: Boot of Ubuntu15.10 lpar fails: "mounting /dev/sdn2 on /root
  failed: Device or resource busy" [multipath]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/multipath-tools/+bug/1503286/+subscriptions

-- 
Ubuntu-server-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: [REGRESSION] launching byobu from unity uses the terminal icon rather than the application icon

2015-10-06 Thread Ted Gould
** Changed in: unity (Ubuntu)
 Assignee: (unassigned) => Marco Trevisan (Treviño) (3v1n0)

-- 
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:
  [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/ubuntu/+source/byobu/+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 1498697] Re: Targets are not consistently shown with large numbers of targets

2015-10-06 Thread Eric Desrochers
** 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 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 1501189] Re: DNS breaks when port=0 is used in dnsmasq.conf

2015-10-06 Thread Robie Basak
*** This bug is a duplicate of bug 1042275 ***
https://bugs.launchpad.net/bugs/1042275

** Tags removed: needs-upstream-report

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

Title:
  DNS breaks when port=0 is used in dnsmasq.conf

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

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


[Bug 1503311] Re: Sync request of python-traceback2 1.4.0-3 from Debian testing: FTBFS due to failing unit tests

2015-10-06 Thread Matthias Klose
synced

** Changed in: python-traceback2 (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  Sync request of python-traceback2 1.4.0-3 from Debian testing: FTBFS
  due to failing unit tests

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-traceback2/+bug/1503311/+subscriptions

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


[Bug 1499063] Re: awscli crashes immediately on start

2015-10-06 Thread Joe Terranova
*** This bug is a duplicate of bug 1499075 ***
https://bugs.launchpad.net/bugs/1499075

I'm dumb, it is a duplicate

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

Title:
  awscli crashes immediately on start

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

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


[Bug 1499063] Re: awscli crashes immediately on start

2015-10-06 Thread Joe Terranova
Unmarked as duplicate of #1499075 . doko in #1499075 notes that the
Python package will not be updated for this change, and therefore third-
party packages should be updated for it. That means awscli needs to be
updated in order to resolve this issue.

** This bug is no longer 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/1499063

Title:
  awscli crashes immediately on start

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

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


[Bug 1499063] Re: awscli crashes immediately on start

2015-10-06 Thread Joe Terranova
Unmarked as duplicate of bug #1499075 . doko in bug #1499075 notes that
the Python package will not be updated for this change, and therefore
third-party packages should be updated for it. That means awscli needs
to be updated in order to resolve this issue.

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

Title:
  awscli crashes immediately on start

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

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


[Bug 1492604] Re: python3-memcached uses invalid string handling

2015-10-06 Thread Robie Basak
Thanks Christian for triaging this bug.

This is my understanding:

Python 3 support is a new feature that arrived in Vivid due to timing of
Debian syncs, but actually never worked. It is not a regression since it
wasn't present in any previous release.

The reason it never worked was an upstream bug in the VCS snapshot that
Debian took, which they've since fixed in a newer release.

The newer (fixed) release is packaged in Wily.

The fix would be valid to backport in an SRU
(https://wiki.ubuntu.com/StableReleaseUpdates#When)

Since we have only one user affected so far, Vivid will be EOL in
January and I expect there won't be many new Vivid users after Wily is
released this month, I think that driving a fix for this in Vivid is of
low importance and don't expect that anyone will get round to doing it,
so I'll set the status for Vivid to Won't Fix so as not to set
unrealistic expectations.

If someone wants to drive this bug through to sponsorship or upload for
a fix to Vivid (see
https://wiki.ubuntu.com/StableReleaseUpdates#Procedure) then feel free
to change the status to Confirmed or Triaged and please go right ahead.

** Changed in: python-memcache (Ubuntu Vivid)
   Status: Triaged => Won't Fix

** Changed in: python-memcache (Ubuntu Vivid)
   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/1492604

Title:
  python3-memcached uses invalid string handling

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-memcache/+bug/1492604/+subscriptions

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


[Bug 1503034] Re: Autofs 5.1.1-1ubuntu2 crashes with segfault on startup

2015-10-06 Thread Sebastien Bacher
Thank you for taking the time to report this bug and helping to make
Ubuntu better. Please try to obtain a backtrace following the
instructions at http://wiki.ubuntu.com/DebuggingProgramCrash and upload
the backtrace (as an attachment) to the bug report. This will greatly
help us in tracking down your problem.

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

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

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

Title:
  Autofs 5.1.1-1ubuntu2 crashes with segfault on startup

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

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


[Bug 1492604] Re: python3-memcached uses invalid string handling

2015-10-06 Thread Robie Basak
Marking Fix Released as this is fixed in the development release (Wily)
and adding a task for Vivid for a possible SRU.

** Also affects: python-memcache (Ubuntu Vivid)
   Importance: Undecided
   Status: New

** Changed in: python-memcache (Ubuntu Vivid)
   Status: New => Triaged

** Changed in: python-memcache (Ubuntu)
   Status: In Progress => Fix Released

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

Title:
  python3-memcached uses invalid string handling

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-memcache/+bug/1492604/+subscriptions

-- 
Ubuntu-server-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: [REGRESSION] launching byobu from unity uses the terminal icon rather than the application icon

2015-10-06 Thread Treviño
So, I guess this is mostly related to the changes in gnome-terminal that
now uses GApplication instead of the old factory.

It also doesn't support anymore the "--class" parameter as it used to be
in the past, but this shouldn't be related to this issue.

I gave a quick look (not with code yet), but it seems that at this point
for BAMF is quite tricky to understand who has launched that window, and
thus using the right icon (since the new terminal window is create by
the same main process of the other terminals). Passing a --class or
--window-role parameter (together with a StartupWMClass .desktop file
paramter) might help in doing this matching, but at this point things
seems quite tricky.

-- 
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:
  [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 1457517] Re: Unable to boot from volume when flavor disk too small

2015-10-06 Thread Billy Olsen
I was able to verify this bug fix today by the following:

1. Setup a vivid-kilo openstack cloud
2. Create a 5G volume from a cirros image
3. Boot an m1.tiny instance using the 5G volume created as the boot source, 
   --> verify command is rejected due to size issue
4. Log into nova-cloud-controller and upgrade nova-* packages to version 
1:2015.1.1-0ubuntu2 from the proposed pocket.
5. Boot an m1.tiny instance using the %G volume created as the boot source
  --> verify command is accepted and instance boots


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

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to nova in Ubuntu.
https://bugs.launchpad.net/bugs/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 1503153] Re: package libapache2-mod-perl2 2.0.8+httpd24-r1449661-6ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2015-10-06 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Since it seems likely to me that this is a local configuration problem,
rather than a bug in Ubuntu, I'm marking this bug as Incomplete.

If indeed this is a local configuration problem, you can find pointers
to get help for this sort of problem here:
http://www.ubuntu.com/support/community

Or 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: libapache2-mod-perl2 (Ubuntu)
   Status: New => Incomplete

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

Title:
  package libapache2-mod-perl2 2.0.8+httpd24-r1449661-6ubuntu2 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/libapache2-mod-perl2/+bug/1503153/+subscriptions

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


[Bug 1503038] Re: got a crash report but don't know much about it

2015-10-06 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Since it seems likely to me that this is a local configuration problem,
rather than a bug in Ubuntu, I'm marking this bug as Incomplete.

If indeed this is a local configuration problem, you can find pointers
to get help for this sort of problem here:
http://www.ubuntu.com/support/community

Or 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 => Incomplete

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

Title:
  got a crash report but don't know much about it

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.6/+bug/1503038/+subscriptions

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


[Bug 1502226] Re: error message "dnsmasq: failed to create listening socket for 0.0.0.0: Address already in use" doesn't explain which port number it refers to

2015-10-06 Thread Robie Basak
Marking Incomplete pending an answer to Simon's question. Once answered,
please change the bug status back to New.

It does sound like a fix would need to go upstream though, rather than
this being fixed in Ubuntu only.

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

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

Title:
  error message "dnsmasq: failed to create listening socket for 0.0.0.0:
  Address already in use" doesn't explain which port number it refers to

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

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


[Bug 1487010] Re: please upload new package to reenable go's race detector on wily

2015-10-06 Thread Martin Pitt
Oh, if this is a non-monotonous git hash, please rather use time based
versions, or a combination like 20151006+git123ABC

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

Title:
  please upload new package to reenable go's race detector on wily

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

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


[Bug 1487010] Re: please upload new package to reenable go's race detector on wily

2015-10-06 Thread Martin Pitt
debian/control was a bit messed up -- the Source: stanza can't have a
"Description:" field. Also, short description shouldn't end with a dot.
It should also add the LP bug ref to debian/changelog. Attaching a
debdiff for this, please apply.

However these are blockers:

 - an upstream version of "229396" is huge, possibly not monotonous (is
that a git commit ref?), and hard to make higher if this is more  like a
git commit hash than a monotonously increasing number.

 - There is also no indication where the orig.tar.gz came from -- this
should either come from a documented upstream release tarball URL,
usually with debian/watch; or should get a "debian/rules get-orig-
source" rule or at least some debian/README.Source that documents how to
get it or any newer version.


** Patch added: "packaging fixes"
   
https://bugs.launchpad.net/ubuntu/+source/golang/+bug/1487010/+attachment/4485683/+files/go-race-detector-runtime.packagingfixes.debdiff

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

Title:
  please upload new package to reenable go's race detector on wily

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

-- 
Ubuntu-server-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-10-06 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Since it seems likely to me that this is a local configuration problem,
rather than a bug in Ubuntu, I'm marking this bug as Incomplete.

If indeed this is a local configuration problem, you can find pointers
to get help for this sort of problem here:
http://www.ubuntu.com/support/community

Or 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: rpcbind (Ubuntu)
   Status: New => Incomplete

-- 
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 1498697] Re: Targets are not consistently shown with large numbers of targets

2015-10-06 Thread Robie Basak
Ah, "None expected, the patch comes from tgt upstream repo and it is
already implemented in Ubuntu Wily and Debian." so setting Fix Released
for Wily.

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

-- 
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-06 Thread Robie Basak
Is this fixed in Wily? Status says New?

-- 
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 1501189] Re: DNS breaks when port=0 is used in dnsmasq.conf

2015-10-06 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

This sounds like a valid bug for a relatively uncommon use case. Does
this bug affect Debian also? In that case, it would be appropriate to
seek a fix there.

** Summary changed:

- Don't put 127.0.0.1 in resolvconf when port=0
+ DNS breaks when port=0 is used in dnsmasq.conf

** Tags added: needs-upstream-report

** Changed in: dnsmasq (Ubuntu)
   Importance: Undecided => Low

** Changed in: dnsmasq (Ubuntu)
   Status: New => Triaged

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

Title:
  DNS breaks when port=0 is used in dnsmasq.conf

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

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


[Bug 1502977] Re: Fails to complete installation: won't start due to config block

2015-10-06 Thread Robie Basak
*** This bug is a duplicate of bug 1488453 ***
https://bugs.launchpad.net/bugs/1488453

** This bug has been marked a duplicate of bug 1488453
   Package postinst always fail on first install when using systemd

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

Title:
  Fails to complete installation: won't start due to config block

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

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


[Bug 1501189] Re: DNS breaks when port=0 is used in dnsmasq.conf

2015-10-06 Thread Alkis Georgopoulos
Hi Robie,

while this also happens in Debian, the use case is more common in Ubuntu, 
because NetworkManager is patched to use a spawned dnsmasq instance as a local 
resolver, and mixing the two DNS servers is problematic (neither bind-dynamic 
nor bind-interfaces work very well).
In Debian they more frequently use the normal dnsmasq/DNS service as it was 
designed, because NM doesn't spawn a local resolver there.

For upstream report, Simon (the upstream dnsmasq developer and Debian
maintainer) already answered here, Simon would you like me to file a
debian bug as well? It's easy to work around this issue, so we can even
close it with won't fix if you prefer.

Thank you.

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

Title:
  DNS breaks when port=0 is used in dnsmasq.conf

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

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


[Bug 1500009] Re: Upgrade pycountry to 1.15

2015-10-06 Thread Bug Watch Updater
** Changed in: pycountry (Debian)
   Status: Unknown => New

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

Title:
  Upgrade pycountry to 1.15

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

-- 
Ubuntu-server-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: [REGRESSION] launching byobu from unity uses the terminal icon rather than the application icon

2015-10-06 Thread Treviño
** No longer affects: unity (Ubuntu)

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

** Changed in: bamf
   Status: New => Triaged

** Changed in: bamf
   Importance: Undecided => Medium

** Changed in: bamf
 Assignee: (unassigned) => Marco Trevisan (Treviño) (3v1n0)

** Changed in: bamf
Milestone: None => 0.5.2

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

** Changed in: bamf (Ubuntu)
   Importance: Undecided => Medium

** Changed in: bamf (Ubuntu)
 Assignee: (unassigned) => Marco Trevisan (Treviño) (3v1n0)

** Changed in: bamf (Ubuntu)
   Status: Confirmed => Triaged

-- 
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:
  [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 1501189] Re: DNS breaks when port=0 is used in dnsmasq.conf

2015-10-06 Thread Thomas Hood
*** This bug is a duplicate of bug 1042275 ***
https://bugs.launchpad.net/bugs/1042275

** This bug has been marked a duplicate of bug 1042275
   Please enhance dnsmasq to talk directly to resolvconf and to register only 
its actual listening address(es)

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

Title:
  DNS breaks when port=0 is used in dnsmasq.conf

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

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


[Bug 1501189] Re: DNS breaks when port=0 is used in dnsmasq.conf

2015-10-06 Thread Robie Basak
*** This bug is a duplicate of bug 1042275 ***
https://bugs.launchpad.net/bugs/1042275

Thanks Alkis. I didn't realise that Simon is the Debian maintainer. I
just wanted to try and make sure this bug doesn't languish because it
hasn't gone to the right place.

I'm quite happy for this bug to remain open in Ubuntu if that's what
Simon wants to do. As long as we consider the bug valid and open then
that's the right status as long as the issue remains unfixed in Ubuntu,
whether or not the fix belongs in Debian.

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

Title:
  DNS breaks when port=0 is used in dnsmasq.conf

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

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


[Bug 1503216] [NEW] php crash with SIGSEGV in zend_mm_add_to_free_list

2015-10-06 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

PHP crash in zend_mm_add_to_free_list

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

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

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


[Bug 1503216] Re: php crash with SIGSEGV in zend_mm_add_to_free_list

2015-10-06 Thread Bartosz Cisek
** Package changed: gnome-control-center (Ubuntu) => php5 (Ubuntu)

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

Title:
  php crash with SIGSEGV in zend_mm_add_to_free_list

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

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


[Bug 1502645] Re: package python-ldb 1:1.1.17-1 failed to install/upgrade: пакет python-ldb не готов к настройке настройка невозможна (текущее состояние: «half-installed»)

2015-10-06 Thread Robie Basak
Thank you for taking the time to report this bug and helping to make
Ubuntu better.

Since it seems likely to me that this is a local configuration problem,
rather than a bug in Ubuntu, I'm marking this bug as Incomplete.

If indeed this is a local configuration problem, you can find pointers
to get help for this sort of problem here:
http://www.ubuntu.com/support/community

Or 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: ldb (Ubuntu)
   Status: New => Incomplete

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

Title:
  package python-ldb 1:1.1.17-1 failed to install/upgrade: пакет python-
  ldb не готов к настройке  настройка невозможна (текущее состояние:
  «half-installed»)

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

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


[Bug 1502612] Re: package libaio1:amd64 0.3.110-1 failed to install/upgrade: package libaio1:amd64 is not ready for configuration cannot configure (current status `half-installed')

2015-10-06 Thread Robie Basak
Thank you for your report.

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

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 was 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 was a bug in Ubuntu rather than a problem
specific to your system, and then change the bug status back to New.

** Changed in: libaio (Ubuntu)
   Status: New => Invalid

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

Title:
  package libaio1:amd64 0.3.110-1 failed to install/upgrade: package
  libaio1:amd64 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/libaio/+bug/1502612/+subscriptions

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


[Bug 1503034] Re: Autofs 5.1.1-1ubuntu2 crashes with segfault on startup

2015-10-06 Thread Adam Pocock
This is the backtrace I got out of apport-cli, but I couldn't figure out
where the debug symbols for autofs are. I followed the instructions to
add extra debug symbols (https://wiki.ubuntu.com/DebuggingProgramCrash).

** Attachment added: "_usr_sbin_automount.0.crash"
   
https://bugs.launchpad.net/ubuntu/+source/autofs/+bug/1503034/+attachment/4486003/+files/_usr_sbin_automount.0.crash

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

Title:
  Autofs 5.1.1-1ubuntu2 crashes with segfault on startup

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

-- 
Ubuntu-server-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-06 Thread Breno Leitão
Changing to 'verification-done' according to the last comment
(comment#12)

** 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 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 1503098] Re: package rpcbind 0.2.1-2ubuntu2.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2015-10-06 Thread Steve Langasek
The specific error message in the logs is:

Preparing to unpack .../rpcbind_0.2.1-2ubuntu2.2_amd64.deb ...
stop: Did not receive a reply. Possible causes include: the remote application 
did not send a reply, the message bus security policy blocked the reply, the 
reply timeout expired, or the network connection was broken.
invoke-rc.d: initscript rpcbind, action "stop" failed.
dpkg: warning: subprocess old pre-removal script returned error exit status 1
dpkg: trying script from the new package instead ...
dpkg: ... it looks like that went OK
Unpacking rpcbind (0.2.1-2ubuntu2.2) over (0.2.1-2ubuntu2.1) ...
[...]
Setting up rpcbind (0.2.1-2ubuntu2.2) ...
start: Did not receive a reply. Possible causes include: the remote application 
did not send a reply, the message bus security policy blocked the reply, the 
reply timeout expired, or the network connection was broken.
invoke-rc.d: initscript rpcbind, action "start" failed.

Your bug report says that you are running Ubuntu 14.04, however these
error messages indicate you are not running upstart as your init system.
Are you running Ubuntu in a chroot on a non-upstart system?  If so you
should have a policy-rc.d in place to disable starting of services in
the chroot.  Have you done something to cause an init system other than
upstart to be used on Ubuntu 14.04?  If so that is entirely unsupported.

-- 
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 1471462] Re: On bootup smartd reports FailedReadSmartSelfTestLog but there is no hardware problem

2015-10-06 Thread Christian Franke
> ... kernel: [1128701.864075] ata4.00: cmd b0/d5:01:06:4f:c2/...
> ... kernel: [1128701.864075] res ... Emask 0x4 (timeout)

This ATA cmd is a correct SMART READ LOG 0x06 (self-test log) command.
If the command fails with "timeout", this is possibly not a
smartmontools issue.

> Device info:
> INTEL SSDSA2MH080G1GC, ...

Some older Intel SSDs have known issues with the SMART READ LOG 0x00
(log directory) command: After this command was completed, the drive may
hang. Smartd reads the log directory to check which log is supported,
see https://www.smartmontools.org/ticket/89.

This very old X18/X25-M G1 series SSD may be affected or not. Please try
whether the problem persists if '-F nologdir' is added to the
smartd.conf configuration line.


** Bug watch added: www.smartmontools.org/ #89
   https://www.smartmontools.org/ticket/89

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

Title:
  On bootup smartd reports FailedReadSmartSelfTestLog but there is no
  hardware problem

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

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


[Bug 525674] Re: apt-check hangs, preventing login via SSH

2015-10-06 Thread Ubuntu Foundations Team Bug Bot
The attachment "Fix for trusty" 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.]

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

Title:
  apt-check hangs, preventing login via SSH

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/update-notifier/+bug/525674/+subscriptions

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


[Bug 1503311] Re: FTBFS due to failing unit tests

2015-10-06 Thread Łukasz Zemczak
Actually, we can simply do a debian sync here since all ubuntu changes
are now incorporated into Debian. On it now.

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

Title:
  FTBFS due to failing unit tests

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-traceback2/+bug/1503311/+subscriptions

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


[Bug 1503286] Re: ISST-LTE: Boot of Ubuntu15.10 lpar fails: "mounting /dev/sdn2 on /root failed: Device or resource busy" [multipath]

2015-10-06 Thread Mauricio Faria de Oliveira
This is a patch for multipath-tools-boot to install a 
/scripts/local-premount/multipath script (based on the btrfs script).
It just runs "udevadm settle --timeout 121" (timeout value taken from udev 
initramfs scripts).

This is supposed to ensure that by the time local_mount_root() calls
resolve_device(), the multipath udev rules are finished, thus the
/dev/disk/by-uuid/ symlinks are updated/pointing to multipath devices,
and $ROOT will be set to a multipath device (vs. an individual path).

** Package changed: initramfs-tools (Ubuntu) => multipath-tools (Ubuntu)

** Patch added: "multipath-tools_premount-udev-settle.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/multipath-tools/+bug/1503286/+attachment/4486173/+files/multipath-tools_premount-udev-settle.debdiff

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

Title:
  ISST-LTE: Boot of Ubuntu15.10 lpar fails: "mounting /dev/sdn2 on /root
  failed: Device or resource busy" [multipath]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/multipath-tools/+bug/1503286/+subscriptions

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


[Bug 1503286] [NEW] ISST-LTE: Boot of Ubuntu15.10 lpar fails: "mounting /dev/sdn2 on /root failed: Device or resource busy" [multipath]

2015-10-06 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

== Comment: #0 - Manjunatha H R  - 2015-09-25 11:05:36 ==
Booting of Ubuntu15.10 lpar fails and control falls to initramfs.

uname -a
--
Linux (none) 4.2.0-10-generic #12-Ubuntu SMP Tue Sep 15 19:46:04 UTC 2015 
ppc64le GNU/Linux


Boot log:
-
  Booting a command list

Loading Linux 4.2.0-10-generic ...
Loading initial ramdisk ...
OF stdout device is: /vdevice/vty@3000
Preparing to boot Linux version 4.2.0-10-generic (buildd@fisher04) (gcc version 
5.2.1 20150911 (Ubuntu 5.2.1-17ubuntu4) ) #12-Ubuntu SMP Tue Sep 15 19:46:04 
UTC 2015 (Ubuntu 4.2.0-10.12-generic 4.2.0)
Detected machine type: 0101
Max number of cores passed to firmware: 256 (NR_CPUS = 2048)
Calling ibm,client-architecture-support... done
command line: BOOT_IMAGE=/boot/vmlinux-4.2.0-10-generic 
root=UUID=822dd709-5b69-45a9-aba5-63cb55768ffb ro splash quiet 
topology_updates=off
memory layout at init:
  memory_limit :  (16 MB aligned)
  alloc_bottom : 0bf8
  alloc_top: 1000
  alloc_top_hi : 1000
  rmo_top  : 1000
  ram_top  : 1000
found display   : /pci@800202c/display@0, opening... done
instantiating rtas at 0x0eb6... done
prom_hold_cpus: skipped
copying OF device tree...
Building dt strings...
Building dt structure...
Device tree strings 0x0bf9 -> 0x0bf91965
Device tree struct  0x0bfa -> 0x0bfe
Quiescing Open Firmware ...
Booting Linux via __start() ...
 -> smp_release_cpus()
spinning_secondaries = 199
 <- smp_release_cpus()
 <- setup_system()
[2.868103] [drm:radeon_device_init [radeon]] *ERROR* Unable to find PCI I/O 
BAR
[3.074553] [drm:radeon_atombios_init [radeon]] *ERROR* Unable to find PCI 
I/O BAR; using MMIO for ATOM IIO
[5.060785] lpfc 0002:90:00.0: 0:1303 Link Up Event x1 received Data: x1 x0 
x80 x0 x0 x0 0
Scanning for Btrfs filesystems
fsck from util-linux 2.26.2
/dev/sdn2 is in use.
e2fsck: Cannot continue, aborting.

fsck exited with status code 8
[   36.233086]  rport-0:0-9: blocked FC remote port time out: removing rport
mount: mounting /dev/sdn2 on /root failed: Device or resource busy
Target filesystem doesn't have requested /sbin/init.
mount: mounting /dev on /root/dev failed: No such file or directory
No init found. Try passing init= bootarg.

BusyBox v1.22.1 (Ubuntu 1:1.22.0-15ubuntu1) built-in shell (ash)
Enter 'help' for a list of built-in commands.

(initramfs)
-


This lpar is having multipath disks and boot disk is on a multipath disk.
Boot passes only whenever fsck tries to scan boot disk via :  /dev/dm OR 
/dev/mapper/mpath

Boot Pass scenarios:

1. Boot passed when fsck tried scanning "/dev/mapper/mpathb"
fsck from util-linux 2.26.2
/dev/mapper/mpathb-part2: clean, 81802/3139584 files, 1040598/12558080 blocks

2. Boot passed when fsck tried scanning  "/dev/dm-3"
Scanning for Btrfs filesystems
fsck from util-linux 2.26.2
/dev/dm-3: clean, 81802/3139584 files, 1040605/12558080 blocks


Boot fails, whenever fsck is called on /dev/sd 

Boot fail scenario: Boot failed when fsck is called on "/dev/sdn"
-
Scanning for Btrfs filesystems
fsck from util-linux 2.26.2
/dev/sdn2 is in use.
e2fsck: Cannot continue, aborting.

fsck exited with status code 8
[   36.108653]  rport-0:0-9: blocked FC remote port time out: removing rport
mount: mounting /dev/sdn2 on /root failed: Device or resource busy
Target filesystem doesn't have requested /sbin/init.

mount: mounting /dev on /root/dev failed: No such file or directory
No init found. Try passing init= bootarg.

BusyBox v1.22.1 (Ubuntu 1:1.22.0-15ubuntu1) built-in shell (ash)
Enter 'help' for a list of built-in commands.

(initramfs)
-

Contact info:

Manju (manju...@in.ibm.com)  A.P. (apu...@us.ibm.com)

== Comment: #12 - Mauricio Faria De Oliveira  - 2015-10-02 
13:51:29 ==
Hi Manju and Alton,

I could not reproduce this bug in 2 attempts.
The LPAR booted successfully, using the root=UUID= parameter.

By looking at this message from the description:
> mount: mounting /dev/sdn2 on /root failed: Device or resource busy

It should have happened because multipath udev rules failed to update
the /dev/disk/by-id/ symlink from /dev/sdn to /dev/dm-X, but
multipathing the path was successful (so it got locked/in-use).

If you can reproduce it again, please leave the LPAR in the failing state (in 
the initramfs), reopen this bug and ping me.
I'd be happy to debug it.

Thanks!

== Comment: #15 - Mauricio Faria De Oliveira  - 2015-10-05 
19:59:56 ==
This is probably a race between the resolve_device() call in mountroot() and 
the multipath discovery triggered by udev rules.

If resolve_device() runs before the root device is multipathed, $ROOT is set to 
an 

[Bug 1503286] Re: ISST-LTE: Boot of Ubuntu15.10 lpar fails: "mounting /dev/sdn2 on /root failed: Device or resource busy" [multipath]

2015-10-06 Thread Mauricio Faria de Oliveira
Verifying the initramfs scripts in the binary package:

$ dpkg-deb -c ../multipath-tools-boot_0.5.0-7ubuntu6premountsettle1_all.deb | 
grep scripts
drwxr-xr-x root/root 0 2015-10-06 16:08 
./usr/share/initramfs-tools/scripts/
drwxr-xr-x root/root 0 2015-10-06 16:08 
./usr/share/initramfs-tools/scripts/local-top/
-rwxr-xr-x root/root  1272 2015-10-06 16:08 
./usr/share/initramfs-tools/scripts/local-top/multipath
drwxr-xr-x root/root 0 2015-10-06 16:08 
./usr/share/initramfs-tools/scripts/local-premount/
-rwxr-xr-x root/root   335 2015-10-06 16:08 
./usr/share/initramfs-tools/scripts/local-premount/multipath
drwxr-xr-x root/root 0 2015-10-06 16:08 
./usr/share/initramfs-tools/scripts/init-top/
-rwxr-xr-x root/root   624 2015-10-06 16:08 
./usr/share/initramfs-tools/scripts/init-top/multipath

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

Title:
  ISST-LTE: Boot of Ubuntu15.10 lpar fails: "mounting /dev/sdn2 on /root
  failed: Device or resource busy" [multipath]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/multipath-tools/+bug/1503286/+subscriptions

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


[Bug 1503311] Re: Sync request of python-traceback2: FTBFS due to failing unit tests

2015-10-06 Thread Łukasz Zemczak
** Summary changed:

- FTBFS due to failing unit tests
+ Sync request of python-traceback2: FTBFS due to failing unit tests

** Description changed:

  From the test-rebuild in wily [1], the package fails to build from
  source. This is fixed in Debian by not running the unit tests at all - a
- merge would be required.
+ sync would be perfect.
+ 
+ Source package name: python-traceback2
+ Source package version: 1.4.0-3
+ Where to sync from: Debian testing
+ 
+ All Ubuntu changes have been incorporated into the Debian version. The
+ only change is the disablement of tests during build.
  
  Log:
  
  + PYTHON=python2.7 python2-unit2
  Traceback (most recent call last):
-   File "/usr/bin/python2-unit2", line 9, in 
- load_entry_point('unittest2==1.1.0', 'console_scripts', 'unit2')()
-   File "/usr/lib/python2.7/dist-packages/unittest2/__main__.py", line 18, in 
main_
- main(module=None)
-   File "/usr/lib/python2.7/dist-packages/unittest2/main.py", line 89, in 
__init__
- self.parseArgs(argv)
-   File "/usr/lib/python2.7/dist-packages/unittest2/main.py", line 119, in 
parseArgs
- self._do_discovery([])
-   File "/usr/lib/python2.7/dist-packages/unittest2/main.py", line 223, in 
_do_discovery
- self.test = loader.discover(self.start, self.pattern, self.top)
-   File "/usr/lib/python2.7/dist-packages/unittest2/loader.py", line 367, in 
discover
- tests = list(self._find_tests(start_dir, pattern))
-   File "/usr/lib/python2.7/dist-packages/unittest2/loader.py", line 433, in 
_find_tests
- for test in path_tests:
-   File "/usr/lib/python2.7/dist-packages/unittest2/loader.py", line 433, in 
_find_tests
- for test in path_tests:
-   File "/usr/lib/python2.7/dist-packages/unittest2/loader.py", line 424, in 
_find_tests
- full_path, pattern, namespace)
-   File "/usr/lib/python2.7/dist-packages/unittest2/loader.py", line 479, in 
_find_test_path
- msg % (mod_name, module_dir, expected_dir))
+   File "/usr/bin/python2-unit2", line 9, in 
+ load_entry_point('unittest2==1.1.0', 'console_scripts', 'unit2')()
+   File "/usr/lib/python2.7/dist-packages/unittest2/__main__.py", line 18, in 
main_
+ main(module=None)
+   File "/usr/lib/python2.7/dist-packages/unittest2/main.py", line 89, in 
__init__
+ self.parseArgs(argv)
+   File "/usr/lib/python2.7/dist-packages/unittest2/main.py", line 119, in 
parseArgs
+ self._do_discovery([])
+   File "/usr/lib/python2.7/dist-packages/unittest2/main.py", line 223, in 
_do_discovery
+ self.test = loader.discover(self.start, self.pattern, self.top)
+   File "/usr/lib/python2.7/dist-packages/unittest2/loader.py", line 367, in 
discover
+ tests = list(self._find_tests(start_dir, pattern))
+   File "/usr/lib/python2.7/dist-packages/unittest2/loader.py", line 433, in 
_find_tests
+ for test in path_tests:
+   File "/usr/lib/python2.7/dist-packages/unittest2/loader.py", line 433, in 
_find_tests
+ for test in path_tests:
+   File "/usr/lib/python2.7/dist-packages/unittest2/loader.py", line 424, in 
_find_tests
+ full_path, pattern, namespace)
+   File "/usr/lib/python2.7/dist-packages/unittest2/loader.py", line 479, in 
_find_test_path
+ msg % (mod_name, module_dir, expected_dir))
  ImportError: 'test_traceback' module incorrectly imported from 
'/usr/lib/python2.7/dist-packages/traceback2/tests'. Expected 
'/«PKGBUILDDIR»/traceback2/tests'. Is this module globally installed?
  debian/rules:35: recipe for target 'override_dh_auto_test' failed
  
  [1] http://people.ubuntuwire.org/~wgrant/rebuild-ftbfs-test/test-
  rebuild-20151001-wily.html

** Summary changed:

- Sync request of python-traceback2: FTBFS due to failing unit tests
+ Sync request of python-traceback2 1.4.0-3 from Debian testing: FTBFS due to 
failing unit tests

** Changed in: python-traceback2 (Ubuntu)
 Assignee: Łukasz Zemczak (sil2100) => (unassigned)

** Changed in: python-traceback2 (Ubuntu)
   Status: In Progress => Confirmed

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

Title:
  Sync request of python-traceback2 1.4.0-3 from Debian testing: FTBFS
  due to failing unit tests

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-traceback2/+bug/1503311/+subscriptions

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


[Bug 1459638] [NEW] maximum_object_size has no effect in default configuration file

2015-10-06 Thread Launchpad Bug Tracker
You have been subscribed to a public bug by Robie Basak (racb):

Squid suffers from a bug or misfeature which makes the
maximum_object_size in the supplied configuration file completely
ineffective.

If you set debug_options = ALL,2 you will see the following line for
objects over 4 MB, that should be cached if you enable it:

  store.cc(1020) checkCachable: StoreEntry::checkCachable: NO: too big

The bug is described here:
http://www.spinics.net/lists/squid/msg69855.html

In summary:

"With adequate debug_options enabled, squid was saying that the object size
was too big (I've added the CL (Content-Length), SMOS (store_maxobjsize) and
EO (endOffset) variables to the log line).

2014/04/21 00:35:35.429| store.cc(1020) checkCachable:
StoreEntry::checkCachable: NO: too big (CL = 33560984; SMOS = 4194304; EO =
268)

Clearly, something was wrong with the maxobjsize, that was set in the config
to 1Gb and the log was reporting it being set to 4Mb (what I discovered
later to be the default value)...

So, if you put in your config something like this (like it
was in mine):

  cache_dir aufs /var/cache 14 16 256
  maximum_object_size 1 GB

then the maximum_object_size option is processed and you see it at the
cachemgr config page but it has no effect as the store data structure
parameter maxobjsize was already initialized (with the default value) by
parse_cachedir before parsing the "maximum_object_size 1 GB" line, so we
have 4Mb (default) effective maximum_object_size.

If we have a config with

  maximum_object_size 1 GB
  cache_dir aufs /var/cache 14 16 256

we get the effective maximum_object_size for the store set to 1Gb as
expected."

The Ubuntu standard configuration file (and probably upstream) have the
maximum_object_size line after the cache_dir, where it has no effect.
Moving it before the cache_dir line makes it work properly.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: squid3 3.3.8-1ubuntu6.2
ProcVersionSignature: Ubuntu 3.16.0-30.40~14.04.1-generic 3.16.7-ckt3
Uname: Linux 3.16.0-30-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.14.1-0ubuntu3.10
Architecture: amd64
Date: Thu May 28 12:56:00 2015
InstallationDate: Installed on 2015-05-17 (10 days ago)
InstallationMedia: Ubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 (20150218.1)
SourcePackage: squid3
UpgradeStatus: No upgrade log present (probably fresh install)
mtime.conffile..etc.squid3.squid.conf: 2015-05-28T12:50:57.224228

** Affects: squid
 Importance: Unknown
 Status: Unknown

** Affects: squid3 (Ubuntu)
 Importance: Medium
 Status: Triaged


** Tags: amd64 apport-bug patch third-party-packages trusty
-- 
maximum_object_size has no effect in default configuration file
https://bugs.launchpad.net/bugs/1459638
You received this bug notification because you are a member of Ubuntu Server 
Team, which is subscribed to the bug report.

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


[Bug 1194310] Re: cachemgr.cgi crashes after login

2015-10-06 Thread Robie Basak
Thanks Amos. http://people.canonical.com/~ubuntu-
security/cve/2013/CVE-2013-0189.html suggests to me that this is fixed
in Ubuntu, if that's the only issue here. That page says that this CVE
was fixed upstream in 3.2.7 and Wily is on 3.3.8. Thus can this be
closed as fixed, or is there something still outstanding?

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

Title:
  cachemgr.cgi crashes after login

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

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


[Bug 1098641] Re: visible_hostname defaults to hostname of first http_port IP, not get_hostname()

2015-10-06 Thread Robie Basak
Thanks Amos. So does this need a bug opening upstream?

** Tags added: needs-upstream-report

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

Title:
  visible_hostname defaults to hostname of first http_port IP, not
  get_hostname()

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

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


[Bug 1503311] [NEW] FTBFS due to failing unit tests

2015-10-06 Thread Łukasz Zemczak
Public bug reported:

>From the test-rebuild in wily [1], the package fails to build from
source. This is fixed in Debian by not running the unit tests at all - a
merge would be required.

Log:

+ PYTHON=python2.7 python2-unit2
Traceback (most recent call last):
  File "/usr/bin/python2-unit2", line 9, in 
load_entry_point('unittest2==1.1.0', 'console_scripts', 'unit2')()
  File "/usr/lib/python2.7/dist-packages/unittest2/__main__.py", line 18, in 
main_
main(module=None)
  File "/usr/lib/python2.7/dist-packages/unittest2/main.py", line 89, in 
__init__
self.parseArgs(argv)
  File "/usr/lib/python2.7/dist-packages/unittest2/main.py", line 119, in 
parseArgs
self._do_discovery([])
  File "/usr/lib/python2.7/dist-packages/unittest2/main.py", line 223, in 
_do_discovery
self.test = loader.discover(self.start, self.pattern, self.top)
  File "/usr/lib/python2.7/dist-packages/unittest2/loader.py", line 367, in 
discover
tests = list(self._find_tests(start_dir, pattern))
  File "/usr/lib/python2.7/dist-packages/unittest2/loader.py", line 433, in 
_find_tests
for test in path_tests:
  File "/usr/lib/python2.7/dist-packages/unittest2/loader.py", line 433, in 
_find_tests
for test in path_tests:
  File "/usr/lib/python2.7/dist-packages/unittest2/loader.py", line 424, in 
_find_tests
full_path, pattern, namespace)
  File "/usr/lib/python2.7/dist-packages/unittest2/loader.py", line 479, in 
_find_test_path
msg % (mod_name, module_dir, expected_dir))
ImportError: 'test_traceback' module incorrectly imported from 
'/usr/lib/python2.7/dist-packages/traceback2/tests'. Expected 
'/«PKGBUILDDIR»/traceback2/tests'. Is this module globally installed?
debian/rules:35: recipe for target 'override_dh_auto_test' failed

[1] http://people.ubuntuwire.org/~wgrant/rebuild-ftbfs-test/test-
rebuild-20151001-wily.html

** Affects: python-traceback2 (Ubuntu)
 Importance: Undecided
 Assignee: Łukasz Zemczak (sil2100)
 Status: In Progress

** Affects: python-traceback2 (Debian)
 Importance: Unknown
 Status: Unknown


** Tags: ftbfs

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

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

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

Title:
  FTBFS due to failing unit tests

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-traceback2/+bug/1503311/+subscriptions

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