[Bug 1692074] Re: Sync parsedatetime 2.3-1 (main) from Debian experimental (main)

2017-06-22 Thread Nish Aravamudan
After discussion on IRC with infinity and unit193, I'll file a MIR for python-future. Will link to it once filed. -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to parsedatetime in Ubuntu. https://bugs.launchpad.net/bugs/1692074 Title:

[Bug 1696252] Re: Please remove nagios3 (and revdeps) from artful

2017-06-22 Thread Nish Aravamudan
nagios3 is seeded in Ubuntu: http://bazaar.launchpad.net/~ubuntu-core- dev/ubuntu-seeds/platform.artful/view/head:/supported-misc-servers So we will need to transition the seeds as well (presumably to icinga2's equivalent packages). -- You received this bug notification because you are a member

[Bug 1699659] Re: phpquery always returns 0

2017-06-22 Thread Nish Aravamudan
** Description changed: + [Impact] + + * various PHP postinst uses php-defaults' scripts for determing what actions to perform. + * The phpquery script has an error that does not propogate state correctly. + + [Test Case] + + [Regression Potential] + + * This is pure bug-fix backport from

[Bug 1272857] Re: Double free in libapache2-mod-auth-pgsql causes Apache to crash

2017-06-22 Thread Andreas Hasenack
I have a branch (https://code.launchpad.net/~ahasenack/ubuntu/+source/libapache2-mod- auth-pgsql/+git/libapache2-mod-auth-pgsql/+ref/trusty-check-null-double- free-1698758-1272857) to SRU this fix and bug #1698758 at the same time. Just waiting on the latter to land in artful, then the SRU

[Bug 1699798] Re: package samba-libs:amd64 2:4.3.11+dfsg-0ubuntu0.16.04.7 failed to install/upgrade: 依赖关系问题 - 仍未被配置

2017-06-22 Thread Andreas Hasenack
Your /boot partition is full, could you please correct that and then try this again: sudo apt update sudo apt -f install Thanks! -- You received this bug notification because you are a member of Ubuntu Server Team, which is subscribed to samba in Ubuntu. https://bugs.launchpad.net/bugs/1699798

Re: [Bug 1690228] Comment bridged from LTC Bugzilla

2017-06-22 Thread Nish Aravamudan
On Thu, Jun 22, 2017 at 10:48 AM, bugproxy wrote: > --- Comment From gpicc...@br.ibm.com 2017-06-22 13:46 EDT--- > nacc, the URLs are: > > 16.04.3 (beta) -> http://ppa.launchpad.net/breno- > leitao/di/ubuntu/dists/xenial/main/installer-ppc64el/current/images/hwe- >

[Bug 1698806] Re: Apache dbd auth configuration error

2017-06-22 Thread Andreas Hasenack
This module seems a valid alternative to mod-auth-pgsql that you tried before, and filed bug #1698758. With DBD + pgsql, you can use your {SHA} style password hashes. I just tried the following hashes (all "secret"): andreas-clear | secret andreas-crypt | 5TGnWmWlHTJ/2 andreas-sha

Re: [Bug 1690228] Comment bridged from LTC Bugzilla

2017-06-22 Thread Nish Aravamudan
On Thu, Jun 22, 2017 at 10:23 AM, Nish Aravamudan wrote: > On Thu, Jun 22, 2017 at 7:49 AM, bugproxy wrote: >> --- Comment From gpicc...@br.ibm.com 2017-06-22 10:44 EDT--- >> Hi folks, I just tested multiple versions of Ubuntu, and will

[Bug 1698758] Re: Encrypted password causes segmentation fault

2017-06-22 Thread Andreas Hasenack
** Bug watch added: Debian Bug tracker #865553 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=865553 ** Also affects: libapache2-mod-auth-pgsql (Debian) via http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=865553 Importance: Unknown Status: Unknown -- You received this bug

Re: [Bug 1690228] Comment bridged from LTC Bugzilla

2017-06-22 Thread Nish Aravamudan
On Thu, Jun 22, 2017 at 7:49 AM, bugproxy wrote: > --- Comment From gpicc...@br.ibm.com 2017-06-22 10:44 EDT--- > Hi folks, I just tested multiple versions of Ubuntu, and will paste a matrix > with the results. > > ethtool is present? > |During installer

[Bug 1690228] Re: Make ethtool installed by default in Ubuntu

2017-06-22 Thread Nish Aravamudan
As far as I know, and I would like IBM to be explicit about it as well, but iproute2 does not provide any ethernet device manipulation stuff. That's what ethtool provides -- modifying device settings (presumably to workaround firmware bugs or other such, during bringup). -- You received this bug

Bug Squashing Day #5 (June 28, 2017)

2017-06-22 Thread Joshua Powers
After a delay, it is time for another bug squashing day! Join us next Wednesday, June 28 in #ubuntu-server on Freenode. Are you interested in helping drive bugs to resolution? Do you have a bug you feel has been ignored and want to work with a developer on finding a solution? Then join us! For a

[Bug 1699659] Re: phpquery always returns 0

2017-06-22 Thread Nish Aravamudan
I have uploaded a potential fixed php-defaults to https://launchpad.net/~nacc/+archive/ubuntu/lp1699659. Could you please test and respond back if it fixes the issue for you? ** Changed in: php-defaults (Ubuntu Xenial) Status: Triaged => In Progress -- You received this bug notification

[Bug 1699659] Re: phpquery always returns 0

2017-06-22 Thread Nish Aravamudan
Hello and thank you for filing this bug report! This was fixed in src :php-defaults 44, which is in Y and on. I will submit a SRU for this to X. ** Bug watch added: Debian Bug tracker #834189 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=834189 ** Also affects: php-defaults (Debian) via

[Bug 1698758] Re: Encrypted password causes segmentation fault

2017-06-22 Thread Andreas Hasenack
One can use mkpasswd(1) from the "whois" package (!) to generate these hashes supported by crypt(3): $ mkpasswd -5 secret $1$0UiJQbpc$QoJQqJIT1DCHtQYGwJHZh0 $ mkpasswd -m sha-256 secret $5$.oyALiVLtCvfBa$cvNlH7IxsirDkBN/vIvHB54p0MPwqxSyiulqnYVMxt/ $ mkpasswd -m sha-512 secret

[Bug 1698758] Re: Encrypted password causes segmentation fault

2017-06-22 Thread Andreas Hasenack
Ok, got a better hang of it. crypt(3) can indeed be used like that, but the code needs to check for it returning NULL in the case of errors: diff --git a/mod_auth_pgsql.c b/mod_auth_pgsql.c index 0a16e05..4f80917 100644 --- a/mod_auth_pgsql.c +++ b/mod_auth_pgsql.c @@ -868,6 +868,12 @@ static

[Bug 1699683] Re: package libgssapi-krb5-2:amd64 1.15-1ubuntu0.1 failed to install/upgrade: függőségi hibák - e csomag beállítatlan maradt

2017-06-22 Thread Andreas Hasenack
Thanks for filing this bug in Ubuntu. Could you please try a few things: a) show us the output of: apt update apt-cache policy libgssapi-krb5-2 libnss3 libk5crypto3 b) Try this: sudo apt update sudo apt -f install c) If that doesn't work, then follow up with this attempt: sudo apt update sudo

[Bug 1697729] Re: port allocator allocates the same SPICE port for multiple guests (race condition)

2017-06-22 Thread James Page
This bug was fixed in the package libvirt - 2.5.0-3ubuntu9~cloud0 --- libvirt (2.5.0-3ubuntu9~cloud0) xenial-pike; urgency=medium . * New update for the Ubuntu Cloud Archive. . libvirt (2.5.0-3ubuntu9) artful; urgency=medium . *