From 8dc92a4da2fdeb9fd6b91e69bda2fffdb2a6b306 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Tue, 20 Feb 2018 23:31:05 +0100 Subject: [PATCH] Backport more patches, update ldconfig macros, check for nobody --- sources | 2 +- systemd.spec | 37 ++++++++++++++++++++++++++++++++----- 2 files changed, 33 insertions(+), 6 deletions(-) diff --git a/sources b/sources index ba7558a..c124c7f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (systemd-78bd769.tar.gz) = 2d2733599e25c2c9e7a6902a0fb1dd1ea86ce1b5ce20c626445dcb4a219134d6e4a09158d022e0ab38788452e98e244689bd909efab692018a41094cdc2c34d6 +SHA512 (systemd-dff4849.tar.gz) = 32bd7f6a6ded8ca326eacd3fcf896b237f50f3cc030fce2104367251b5c363a79b420e716831c7837954b93c77df275e4f9849ea018d7745578f7b6c7732fdb4 diff --git a/systemd.spec b/systemd.spec index 17ea374..7389443 100644 --- a/systemd.spec +++ b/systemd.spec @@ -1,4 +1,4 @@ -%global gitcommit 78bd76934d74556054ed4cb69929d4318ae82a2d +%global gitcommit dff48497371a78212d8a71db6ac9130754939b3f %{?gitcommit:%global gitcommitshort %(c=%{gitcommit}; echo ${c:0:7})} # We ship a .pc file but don't want to have a dep on pkg-config. We @@ -13,7 +13,7 @@ Name: systemd Url: http://www.freedesktop.org/wiki/Software/systemd Version: 237 -Release: 1%{?gitcommit:.git%{gitcommitshort}}%{?dist} +Release: 2%{?gitcommit:.git%{gitcommitshort}}%{?dist} # For a breakdown of the licensing, see README License: LGPLv2+ and MIT and GPLv2+ Summary: System and Service Manager @@ -158,6 +158,7 @@ Provides: nss-myhostname = 0.4 Provides: nss-myhostname%{_isa} = 0.4 Requires(post): sed Requires(post): grep +Requires(post): /usr/bin/getent %description libs Libraries for systemd and udev. @@ -324,6 +325,11 @@ CONFIGURE_OPTS=( %meson "${CONFIGURE_OPTS[@]}" %meson_build +if diff %{SOURCE1} %{_vpath_builddir}/triggers.systemd; then + echo -e "\n\n\nWARNING: triggers.systemd in Source1 is different!" + echo -e " cp %{_vpath_builddir}/triggers.systemd %{SOURCE1}\n\n\n" +fi + %install %meson_install @@ -549,7 +555,7 @@ if [ $1 -eq 0 ] ; then fi %post libs -/sbin/ldconfig +%ldconfig if [ -f /etc/nsswitch.conf ] ; then # sed-fu to add myhostanme to hosts line @@ -583,7 +589,21 @@ if [ -f /etc/nsswitch.conf ] ; then ' /etc/nsswitch.conf &>/dev/null || : fi -%postun libs -p /sbin/ldconfig +# check if nobody or nfsnobody is defined +export SYSTEMD_NSS_BYPASS_SYNTHETIC=1 +if getent passwd nfsnobody &>/dev/null; then + test -f /etc/systemd/dont-synthesize-nobody || { + echo 'Detected system with nfsnobody defined, creating /etc/systemd/dont-synthesize-nobody' + touch /etc/systemd/dont-synthesize-nobody + } +elif getent passwd nobody 2>/dev/null | grep -v 'nobody:[x*]:65534:65534:.*:/:/sbin/nologin' &>/dev/null; then + test -f /etc/systemd/dont-synthesize-nobody || { + echo 'Detected system with incompatible nobody defined, creating /etc/systemd/dont-synthesize-nobody' + touch /etc/systemd/dont-synthesize-nobody + } +fi + +%{?ldconfig:%postun libs -p %ldconfig} %global udev_services systemd-udev{d,-settle,-trigger}.service systemd-udevd-{control,kernel}.socket systemd-timesyncd.service @@ -682,7 +702,14 @@ fi %files tests -f .file-list-tests %changelog -* Fri Feb 9 2018 zbyszek - 237-1.git78bd769 +* Tue Feb 20 2018 Zbigniew Jędrzejewski-Szmek - 237-2.gitdff4849 +- Backport a bunch of patches, most notably for the journal and various + memory issues. Some minor build fixes. +- Switch to new ldconfig macros that do nothing in F28+ +- /etc/systemd/dont-synthesize-nobody is created in %%post if nfsnobody + or nobody users are defined (#1537262) + +* Fri Feb 9 2018 Zbigniew Jędrzejeweski-Szmek - 237-1.git78bd769 - Update to first stable snapshot (various minor memory leaks and misaccesses, some documentation bugs, build fixes).