ubuntu/+source/memcached:applied/ubuntu/eoan-proposed

Last commit made on 2020-06-24
Get this branch:
git clone -b applied/ubuntu/eoan-proposed https://git.launchpad.net/ubuntu/+source/memcached
Members of git-ubuntu import can upload to this branch. Log in for directions.

Branch merges

Branch information

Name:
applied/ubuntu/eoan-proposed
Repository:
lp:ubuntu/+source/memcached

Recent commits

eeeeda8... by Anders Kaseorg

1.5.10-0ubuntu3.1 (patches applied)

Imported using git-ubuntu import.

0fcc697... by Anders Kaseorg

fix bug where sasl will load config the wrong path

Gbp-Pq: fix-bug-where-sasl-will-load-config-the-wrong-path.patch.

7df4bb0... by Anders Kaseorg

[PATCH] fix strncpy call to avoid ASAN violation

Gbp-Pq: CVE-2019-15026.patch.

965510c... by Anders Kaseorg

[PATCH] fix segfault in "lru" command

Gbp-Pq: CVE-2019-11596.patch.

6bcd453... by Anders Kaseorg

Don't run some upstream tests

Gbp-Pq: 07_disable_tests.patch.

d31581e... by Anders Kaseorg

Uses --retry to wait up to 5 seconds for the killed process to die.

Gbp-Pq: 04_add_init_retry.patch.

85c7b44... by Anders Kaseorg

Additions for service unit file

Gbp-Pq: 02_service_wrapper.patch.

bfb5656... by Anders Kaseorg

LSB requirements

Gbp-Pq: 01_init_script_additions.patch.

fde90e8... by Sergio Durigan Junior

Update changelog for 1.5.10-0ubuntu3.1.

c6400b1... by Sergio Durigan Junior

  * d/p/fix-bug-where-sasl-will-load-config-the-wrong-path.patch:
    Fix the path from which SASL configuration is loaded. (LP: #1878721)
    The bug happened because sasl expects memcached to provide a
    path (i.e., a directory, not a filename) where the sasl
    configuration file(s) is (are). However, memcached was passing
    the filename (/etc/sasl2/memcached.conf) to sasl, which was
    interpreting it as a directory, and looking for a configuration
    file inside it (i.e., /etc/sasl2/memcached.conf/memcached.conf).
    Users could workaround this bug by creating a directory named
    /etc/sasl2/memcached.conf/, and putting the configuration file
    inside it. This patch not only fixes this bug (by passing the
    right directory, /etc/sasl2/, to sasl) but also supports the
    workaround described above.