diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 01:16:25 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-06 01:16:25 +0000 |
commit | 493d99a59cc0189b4a6e9b5d4d74d9d747e34e01 (patch) | |
tree | f874c5dd860f5340e2988d0ad4fd30724db945a1 /debian/patches/systemd-mandb-quiet.patch | |
parent | Adding upstream version 2.8.5. (diff) | |
download | man-db-493d99a59cc0189b4a6e9b5d4d74d9d747e34e01.tar.xz man-db-493d99a59cc0189b4a6e9b5d4d74d9d747e34e01.zip |
Adding debian version 2.8.5-2.debian/2.8.5-2debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/systemd-mandb-quiet.patch')
-rw-r--r-- | debian/patches/systemd-mandb-quiet.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/debian/patches/systemd-mandb-quiet.patch b/debian/patches/systemd-mandb-quiet.patch new file mode 100644 index 0000000..afe57a7 --- /dev/null +++ b/debian/patches/systemd-mandb-quiet.patch @@ -0,0 +1,32 @@ +From 67eada88c19228c53f0f4fc846c3ae71696a7ea3 Mon Sep 17 00:00:00 2001 +From: Colin Watson <cjwatson@debian.org> +Date: Sun, 27 Jan 2019 18:59:46 +0000 +Subject: Add --quiet to systemd mandb invocation + +Fixes Debian bug #920628. + +* init/systemd/man-db.service.in (ExecStart): Run mandb with --quiet. +* NEWS: Document this. + +Origin: upstream, https://git.savannah.gnu.org/cgit/man-db.git/commit/?id=a4206c27060357cc78219a54349624e0d0675aff +Bug-Debian: https://bugs.debian.org/920628 +Last-Update: 2019-02-10 + +Patch-Name: systemd-mandb-quiet.patch +--- + init/systemd/man-db.service.in | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/init/systemd/man-db.service.in b/init/systemd/man-db.service.in +index 25be57d9..b970913a 100644 +--- a/init/systemd/man-db.service.in ++++ b/init/systemd/man-db.service.in +@@ -10,7 +10,7 @@ ExecStart=+/usr/bin/install -d -o @cache_top_owner@ -g @cache_top_owner@ -m 0755 + # Expunge old catman pages which have not been read in a week. + ExecStart=/usr/bin/find /var/cache/man -type f -name *.gz -atime +6 -delete + # Regenerate man database. +-ExecStart=@bindir@/mandb ++ExecStart=@bindir@/mandb --quiet + User=@cache_top_owner@ + Nice=19 + IOSchedulingClass=idle |