[Bug 1935709] Re: grpc++-dev doesn't install gRPCConfig.cmake

2024-02-29 Thread Ken Dreyer (Red Hat)
Also reported at
https://bugs.launchpad.net/ubuntu/+source/grpc/+bug/2019881

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1935709

Title:
  grpc++-dev doesn't install gRPCConfig.cmake

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 2019881] Re: Dev package does not contain cmake files

2024-02-29 Thread Ken Dreyer (Red Hat)
See also https://bugs.launchpad.net/ubuntu/+source/grpc/+bug/1935709

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2019881

Title:
  Dev package does not contain cmake files

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


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1865900] Re: apache 2.4.29-1ubuntu4.12 authentication with client certificate broken

2021-08-18 Thread Ken Dreyer (Red Hat)
Focal's curl 7.68.0-1ubuntu2.6 now supports post-handshake client
authentication.

curl \
  --tls-max 1.2 \
  --cacert ~/.koji/pki/koji-ca.crt \
  --cert ~/koji-ansible/koji-tools/admin.crt \
  --key ~/koji-ansible/koji-tools/admin.key \
  https://localhost/kojihub/ssllogin

However, python-requests on Focal or Groovy still cannot do post-
handshake client auth with the default SSLProtocol setting. Sample
Python script:

  import requests

  r = requests.get('https://localhost/kojihub/ssllogin',
   verify='.koji/pki/koji-ca.crt',
   cert=('koji-ansible/koji-tools/admin.crt',
 'koji-ansible/koji-tools/admin.key'))
  r.raise_for_status()

 The Apache error logs say:

  [ssl:error] AH10158: cannot perform post-handshake authentication
  [ssl:error] SSL Library Error: error:14268117:SSL  
routines:SSL_verify_client_post_handshake:extension not received

Applying
https://github.com/psf/requests/commit/db47b9b4a0c5877fb97f64ac442757604c4c45cc
or updating to hirsute's python3-requests_2.25.1+dfsg-2 does work.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1865900

Title:
  apache 2.4.29-1ubuntu4.12 authentication with client certificate
  broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-release-notes/+bug/1865900/+subscriptions


-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1865900] Re: apache 2.4.29-1ubuntu4.12 authentication with client certificate broken

2020-03-05 Thread Ken Dreyer (Red Hat)
"SSLProtocol all -SSLv3" is in the default /etc/apache2/mods-
enabled/ssl.conf. Why does the behavior change when I set "SSLProtocol
TLSv1.3 TLSv1.2"?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1865900

Title:
  apache 2.4.29-1ubuntu4.12 authentication with client certificate
  broken

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1865900] Re: apache 2.4.29-1ubuntu4.12 authentication with client certificate broken

2020-03-05 Thread Ken Dreyer (Red Hat)
With Bionic's apache 2.4.29-1ubuntu4.12:

"SSLProtocol TLSv1.3 TLSv1.2" - works
"SSLProtocol TLSv1.3 +TLSv1.2" - does not work
"SSLProtocol all -SSLv3" - does not work

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1865900

Title:
  apache 2.4.29-1ubuntu4.12 authentication with client certificate
  broken

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1865900] Re: apache 2.4.29-1ubuntu4.12 authentication with client certificate broken

2020-03-05 Thread Ken Dreyer (Red Hat)
>From https://bugzilla.redhat.com/show_bug.cgi?id=1761403:
"The fix is available in urllib3 1.25.4. The fix requires Python 3.7.4 or newer 
with fix https://bugs.python.org/issue37428 ."

I upgraded urllib3 and requests to the Disco versions:

Unpacking python3-urllib3 (1.24.1-1ubuntu0.1) over (1.22-1ubuntu0.18.04.1) ...
Unpacking python3-requests (2.21.0-1) over (2.18.4-2ubuntu0.1) ...

I still get "HTTPError: 403 Client Error: Forbidden for url:
https://localhost/kojihub/ssllogin; in my Bionic VM when I try those
versions.

** Bug watch added: Red Hat Bugzilla #1761403
   https://bugzilla.redhat.com/show_bug.cgi?id=1761403

** Bug watch added: Python Roundup #37428
   http://bugs.python.org/issue37428

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1865900

Title:
  apache 2.4.29-1ubuntu4.12 authentication with client certificate
  broken

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1865900] Re: apache 2.4.29-1ubuntu4.12 authentication with client certificate broken

2020-03-04 Thread Ken Dreyer (Red Hat)
I can confirm this as well. I have a CI job that uses python-requests to
contact Apache with SSL x590 client authentication. This job passed with
apache 2.4.29-1ubuntu4.11 and it fails with apache 2.4.29-1ubuntu4.12.

Passing: https://travis-ci.org/ktdreyer/koji-ansible/builds/655568368
Failing: https://travis-ci.org/ktdreyer/koji-ansible/builds/657818117

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1865900

Title:
  apache 2.4.29-1ubuntu4.12 authentication with client certificate
  broken

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1803423] [NEW] koji-client should depend on requests and dateutil

2018-11-14 Thread Ken Dreyer (Red Hat)
Public bug reported:

I'm using koji-client_1.16.0-2 on Cosmic.

$ koji hello
Traceback (most recent call last):
  File "/usr/bin/koji", line 40, in 
import koji
  File "/usr/lib/python2.7/dist-packages/koji/__init__.py", line 64, in 
import requests
ImportError: No module named requests


After "apt-get install python-requests"...


$ koji hello
Traceback (most recent call last):
  File "/usr/local/bin/kojidev", line 46, in 
from koji_cli.commands import *
  File "/usr/lib/python2.7/dist-packages/koji_cli/commands.py", line 5, in 

import dateutil.parser
ImportError: No module named dateutil.parser

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

** Summary changed:

- koji-client should depend on requests
+ koji-client should depend on requests and dateutil

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1803423

Title:
  koji-client should depend on requests and dateutil

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1803416] [NEW] update bionic to 1.16.0

2018-11-14 Thread Ken Dreyer (Red Hat)
Public bug reported:

Bionic currently has Koji v1.10.0. This version lacks the "import-cg"
command. Would you please update the Bionic package to the 1.16.0 one in
Cosmic?

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1803416

Title:
  update bionic to 1.16.0

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1777479] [NEW] RFE: add "allow-unauthenticated" option to add-apt-repository

2018-06-18 Thread Ken Dreyer (Red Hat)
Public bug reported:

The apt command has an "--allow-unauthenticated" option.

It would be great to add "--allow-unauthenticated" to "add-apt-
repository" as well. This could add the "[trusted=yes]" option to the
/etc/apt/sources.list.d/my_trusted_repo.list definition. Like so:

  deb [trusted=yes] https://example.com/ bionic main

** Affects: software-properties (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1777479

Title:
  RFE: add "allow-unauthenticated" option to add-apt-repository

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/software-properties/+bug/1777479/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1744072] Re: MIR Chrony in 18.04

2018-01-22 Thread Ken Dreyer (Red Hat)
Ceph tracker to switch from ntpd to chronyd:
http://tracker.ceph.com/issues/22751

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1744072

Title:
  MIR Chrony in 18.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ntp-charm/+bug/1744072/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1709396] Re: gcc-7/i386|armhf 12.1.2 FTBFS

2017-08-10 Thread Ken Dreyer (Red Hat)
For the record this went upstream in
https://github.com/ceph/ceph/pull/16938

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1709396

Title:
  gcc-7/i386|armhf 12.1.2 FTBFS

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1636322] Re: [SRU] upstart: ceph-all service starts before networks up

2017-05-16 Thread Ken Dreyer (Red Hat)
Thanks Billy, I'll update upstream's tracker with that PR link.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1636322

Title:
  [SRU] upstart: ceph-all service starts before networks up

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1636322] Re: [SRU] upstart: ceph-all service starts before networks up

2017-05-16 Thread Ken Dreyer (Red Hat)
James and Billy, was a patch sent upstream for this?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1636322

Title:
  [SRU] upstart: ceph-all service starts before networks up

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1647864] Re: google-perftools can deadlock with dlopen on startup

2017-04-28 Thread Ken Dreyer (Red Hat)
Would you please fix this in Xenial?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1647864

Title:
  google-perftools can deadlock with dlopen on startup

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/google-perftools/+bug/1647864/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1411030] Re: backport support for unix domain sockets

2017-01-20 Thread Ken Dreyer (Red Hat)
We're going to remove support for FCGI in RGW:
http://tracker.ceph.com/issues/16784, so we won't need this bug any
more.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1411030

Title:
  backport support for unix domain sockets

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1422417] Re: ceph radosgw needs mod-proxy-fcgi for apache 2.2

2017-01-20 Thread Ken Dreyer (Red Hat)
We're going to remove support for FCGI in RGW:
http://tracker.ceph.com/issues/16784, so we won't need this bug any
more.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1422417

Title:
  ceph radosgw needs mod-proxy-fcgi for apache 2.2

To manage notifications about this bug go to:
https://bugs.launchpad.net/precise-backports/+bug/1422417/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1647864] Re: google-perftools can deadlock with dlopen on startup

2016-12-13 Thread Ken Dreyer (Red Hat)
Here's the RHEL 7 bug: http://bugzilla.redhat.com/1339710

Patch we used in RHEL 7:
https://git.centos.org/raw/rpms!gperftools/7a06cf7fbfd7d53213c1c5f1206f3b8b0c89101d/SOURCES
!gp-Use-initial-exec-tls-for-libunwind-s-recursion-flag.patch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1647864

Title:
  google-perftools can deadlock with dlopen on startup

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/google-perftools/+bug/1647864/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1636544] Re: SUSE lrbd support for high availability iSCSI gateway and multipath support of Ceph RBD images

2016-10-26 Thread Ken Dreyer (Red Hat)
Sure. Also note that I think these utilities rely on features in kernel
4.9 (also backported to RHEL 7.3's upcoming kernel-3.10.0-514.el7 or
later), so it probably won't work on Ubuntu 14.04 and 16.04's standard
kernels. In terms of HWE kernels for those, it looks like only 16.04.3
or 16.04.4 will have HWE kernel 4.9 or newer.

https://wiki.ubuntu.com/Kernel/LTSEnablementStack

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1636544

Title:
  SUSE lrbd support for high availability iSCSI gateway and multipath
  support of Ceph RBD images

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1636544] Re: SUSE lrbd support for high availability iSCSI gateway and multipath support of Ceph RBD images

2016-10-26 Thread Ken Dreyer (Red Hat)
To clarify the list of supported OSes: I am leaning towards retiring
lrbd from Fedora, and we have no plans to ship that tool on RHEL (via
the Red Hat Ceph Storage product).

Instead, we're going to use these projects to manage the userland iSCSI
bits:

https://github.com/pcuzner/ceph-iscsi-ansible
https://github.com/pcuzner/ceph-iscsi-config
https://github.com/pcuzner/ceph-iscsi-tools

We have not put ceph-iscsi-ansible into Fedora yet because there is
still some question regarding whether ceph-iscsi-ansible upstream will
eventually merge with ceph-ansible upstream, but it's in progress.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1636544

Title:
  SUSE lrbd support for high availability iSCSI gateway and multipath
  support of Ceph RBD images

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1629356] [NEW] update xenial to 0.8.0

2016-09-30 Thread Ken Dreyer (Red Hat)
Public bug reported:

Would you please ship zstd 0.8.0 for Xenial and Trusty? Ceph is going to
have to bundle a newer zstd in the meantime, which makes Ceph's build
times longer, and makes it harder for us all to track security issues in
this library (https://github.com/ceph/ceph/pull/11156)

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1629356

Title:
  update xenial to 0.8.0

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1597406] Re: Incorrect location of /etc/defaults in ceph systemd files

2016-06-29 Thread Ken Dreyer (Red Hat)
"/etc/default/ceph/ceph" is wrong and this needs to be
"/etc/default/ceph" everywhere. This has been fixed in Ceph upstream.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1597406

Title:
  Incorrect location of /etc/defaults in ceph systemd files

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1596063] [NEW] split server packages

2016-06-24 Thread Ken Dreyer (Red Hat)
Public bug reported:

Would you please split the yakkety ceph packages according to the split
that's happened in the upstream ceph.com Debian packaging?

"ceph" is now "ceph-base" "ceph-mon" + "ceph-osd"

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1596063

Title:
  split server packages

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1432644] Re: VM permanently tries to read /dev/shm/lttng-ust-wait-5

2016-02-03 Thread Ken Dreyer (Red Hat)
FYI ceph v0.94.6 will load LTTng-UST only when specifically configured.
This should avoid SELinux / AppArmor denials in most cases. See
http://tracker.ceph.com/issues/13274

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

Title:
  VM permanently tries to read /dev/shm/lttng-ust-wait-5

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

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


[Bug 1432644] Re: VM permanently tries to read /dev/shm/lttng-ust-wait-5

2016-02-03 Thread Ken Dreyer (Red Hat)
FYI ceph v0.94.6 will load LTTng-UST only when specifically configured.
This should avoid SELinux / AppArmor denials in most cases. See
http://tracker.ceph.com/issues/13274

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1432644

Title:
  VM permanently tries to read /dev/shm/lttng-ust-wait-5

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1432786] Re: upgrade of ceph in vivid breaks qemu-system-arm

2015-06-04 Thread Ken Dreyer (Red Hat)
The patch was merged to Ceph master upstream in
35c5fd0091fc4d63b21207fb94e46b343519fd56
(https://github.com/ceph/ceph/pull/4839)

** Bug watch added: Red Hat Bugzilla #186
   https://bugzilla.redhat.com/show_bug.cgi?id=186

** Also affects: ceph (Fedora) via
   https://bugzilla.redhat.com/show_bug.cgi?id=186
   Importance: Unknown
   Status: Unknown

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

Title:
  upgrade of ceph in vivid breaks qemu-system-arm

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

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


[Bug 1432786] Re: upgrade of ceph in vivid breaks qemu-system-arm

2015-06-04 Thread Ken Dreyer (Red Hat)
The patch was merged to Ceph master upstream in
35c5fd0091fc4d63b21207fb94e46b343519fd56
(https://github.com/ceph/ceph/pull/4839)

** Bug watch added: Red Hat Bugzilla #186
   https://bugzilla.redhat.com/show_bug.cgi?id=186

** Also affects: ceph (Fedora) via
   https://bugzilla.redhat.com/show_bug.cgi?id=186
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1432786

Title:
  upgrade of ceph in vivid breaks qemu-system-arm

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1281074] Re: updatedb.conf: CephFS should be included in PRUNEFS

2015-05-21 Thread Ken Dreyer (Red Hat)
** Bug watch added: Red Hat Bugzilla #1223582
   https://bugzilla.redhat.com/show_bug.cgi?id=1223582

** Also affects: mlocate (Fedora) via
   https://bugzilla.redhat.com/show_bug.cgi?id=1223582
   Importance: Unknown
   Status: Unknown

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

** Package changed: debian = mlocate (Debian)

** Changed in: mlocate (Debian)
   Importance: Undecided = Unknown

** Changed in: mlocate (Debian)
   Status: New = Unknown

** Changed in: mlocate (Debian)
 Remote watch: None = Debian Bug tracker #786433

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1281074

Title:
  updatedb.conf: CephFS should be included in PRUNEFS

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1281074] Re: updatedb.conf: CephFS should be included in PRUNEFS

2015-05-20 Thread Ken Dreyer (Red Hat)
Wido, did you end up filing a bug with Debian on this? If not, I can do
so.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1281074

Title:
  updatedb.conf: CephFS should be included in PRUNEFS

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1411757] Re: update to latest msgpack-python release

2015-04-13 Thread Ken Dreyer (Red Hat)
Agreed, 0.4.6 is better :)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1411757

Title:
  update to latest msgpack-python release

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1411030] Re: backport support for unix domain sockets

2015-02-09 Thread Ken Dreyer (Red Hat)
Here's the patch that Red Hat ships to provide UDS support for their
httpd 2.4.6 package on RHEL 7. (This patch can be found in CentOS' git
repository, https://git.centos.org/log/!rpms!httpd.git/refs!heads!c7 )

** Patch added: Red Hat's patch for UDS support in httpd 2.4.6
   
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1411030/+attachment/4315849/+files/httpd-2.4.6-uds.patch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1411030

Title:
  backport support for unix domain sockets

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1411030] Re: backport support for unix domain sockets

2015-02-09 Thread Ken Dreyer (Red Hat)
Here's the patch that Red Hat ships to provide UDS support for their
httpd 2.4.6 package on RHEL 7. (This patch can be found in CentOS' git
repository, https://git.centos.org/log/!rpms!httpd.git/refs!heads!c7 )

** Patch added: Red Hat's patch for UDS support in httpd 2.4.6
   
https://bugs.launchpad.net/ubuntu/+source/apache2/+bug/1411030/+attachment/4315849/+files/httpd-2.4.6-uds.patch

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

Title:
  backport support for unix domain sockets

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

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


[Bug 1411757] [NEW] update to latest msgpack-python release

2015-01-16 Thread Ken Dreyer (Red Hat)
Public bug reported:

msgpack-python version 0.4.4 is out on PyPI. Would you mind updating the
Ubuntu packages to 0.4.4?

(It would be great to see a newer version in Precise as well)

** Affects: msgpack-python (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  update to latest msgpack-python release

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

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


[Bug 1411757] [NEW] update to latest msgpack-python release

2015-01-16 Thread Ken Dreyer (Red Hat)
Public bug reported:

msgpack-python version 0.4.4 is out on PyPI. Would you mind updating the
Ubuntu packages to 0.4.4?

(It would be great to see a newer version in Precise as well)

** Affects: msgpack-python (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1411757

Title:
  update to latest msgpack-python release

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1411030] [NEW] backport support for unix domain sockets

2015-01-14 Thread Ken Dreyer (Red Hat)
Public bug reported:

Background: Ceph's RADOS Gateway (RGW) is a web application that
provides an S3- and Swift-compatible interface to Ceph. RGW uses
mod_proxy_fcgi in Apache 2.4.

In the Ceph team's testing, the RGW application performs much better
when using Unix Domain Sockets with mod_proxy_fcgi. On older versions of
Apache that do not support Unix Domain Sockets, RGW must use TCP sockets
instead, which do not perform as well.

The upstream Apache project shipped Unix Domain Socket support in
version 2.4.9. Since Ubuntu Trusty has Apache 2.4.7, I'd like to request
that the Ubuntu Apache maintainers backport Unix Domain Socket support
into their 2.4.7 package.

(Here is some background information posted to ceph-devel:
http://thread.gmane.org/gmane.comp.file-systems.ceph.devel/22552 )

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

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

Title:
  backport support for unix domain sockets

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

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


[Bug 1411030] [NEW] backport support for unix domain sockets

2015-01-14 Thread Ken Dreyer (Red Hat)
Public bug reported:

Background: Ceph's RADOS Gateway (RGW) is a web application that
provides an S3- and Swift-compatible interface to Ceph. RGW uses
mod_proxy_fcgi in Apache 2.4.

In the Ceph team's testing, the RGW application performs much better
when using Unix Domain Sockets with mod_proxy_fcgi. On older versions of
Apache that do not support Unix Domain Sockets, RGW must use TCP sockets
instead, which do not perform as well.

The upstream Apache project shipped Unix Domain Socket support in
version 2.4.9. Since Ubuntu Trusty has Apache 2.4.7, I'd like to request
that the Ubuntu Apache maintainers backport Unix Domain Socket support
into their 2.4.7 package.

(Here is some background information posted to ceph-devel:
http://thread.gmane.org/gmane.comp.file-systems.ceph.devel/22552 )

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1411030

Title:
  backport support for unix domain sockets

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs