]> git.pld-linux.org Git - packages/systemd.git/commitdiff
up to 245.7 auto/th/systemd-245.7-1
authorJan Palus <atler@pld-linux.org>
Tue, 28 Jul 2020 21:56:26 +0000 (23:56 +0200)
committerJan Palus <atler@pld-linux.org>
Tue, 28 Jul 2020 21:56:26 +0000 (23:56 +0200)
systemd-logind_restart.patch [deleted file]
systemd.spec

diff --git a/systemd-logind_restart.patch b/systemd-logind_restart.patch
deleted file mode 100644 (file)
index 376542d..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-From 0664daffee63648ff93b5571421149383501d356 Mon Sep 17 00:00:00 2001
-From: Jan Palus <atler@pld-linux.org>
-Date: Thu, 11 Jun 2020 18:23:28 +0200
-Subject: [PATCH] login: filenames in /run/systemd/users are uids
-
-Fixes: #16146
-Signed-off-by: Jan Palus <atler@pld-linux.org>
----
- src/login/logind.c | 9 ++++++++-
- 1 file changed, 8 insertions(+), 1 deletion(-)
-
-diff --git a/src/login/logind.c b/src/login/logind.c
-index 5a556f9ea4..3239f7d18a 100644
---- a/src/login/logind.c
-+++ b/src/login/logind.c
-@@ -328,11 +328,18 @@ static int manager_enumerate_users(Manager *m) {
-         FOREACH_DIRENT(de, d, return -errno) {
-                 User *u;
-+                uid_t uid;
-                 if (!dirent_is_file(de))
-                         continue;
--                k = manager_add_user_by_name(m, de->d_name, &u);
-+                k = safe_atou(de->d_name, &uid);
-+                if (k < 0) {
-+                        r = log_warning_errno(k, "Failed to add user by file name %s, ignoring: %m", de->d_name);
-+                        continue;
-+                }
-+
-+                k = manager_add_user_by_uid(m, uid, &u);
-                 if (k < 0) {
-                         r = log_warning_errno(k, "Failed to add user by file name %s, ignoring: %m", de->d_name);
-                         continue;
--- 
-2.27.0
-
index 1c259769bf77cfaaf6bec657313b7292ec425d2c..84ea22018e22d9a2d97c252d05f0f5525e008e09 100644 (file)
@@ -28,14 +28,14 @@ Summary:    A System and Service Manager
 Summary(pl.UTF-8):     systemd - zarządca systemu i usług dla Linuksa
 Name:          systemd
 # Verify ChangeLog and NEWS when updating (since there are incompatible/breaking changes very often)
-Version:       245.6
+Version:       245.7
 Release:       1
 Epoch:         1
 License:       GPL v2+ (udev), LGPL v2.1+ (the rest)
 Group:         Base
 #Source0Download: https://github.com/systemd/systemd/releases
 Source0:       https://github.com/systemd/systemd-stable/archive/v%{version}/%{name}-%{version}.tar.gz
-# Source0-md5: 1eb3ca8f77978cc52dea6293467211a8
+# Source0-md5: 4cae7b0a6ad980d5c1057bd028fb489b
 Source1:       %{name}-sysv-convert
 Source2:       %{name}_booted.c
 Source3:       network.service
@@ -77,7 +77,6 @@ Patch12:      uids_gids.patch
 Patch13:       sysctl.patch
 Patch14:       pld-pam-%{name}-user.patch
 Patch15:       %{name}-x32.patch
-Patch16:       %{name}-logind_restart.patch
 URL:           https://www.freedesktop.org/wiki/Software/systemd/
 BuildRequires: acl-devel
 %{?with_audit:BuildRequires:   audit-libs-devel}
@@ -674,7 +673,6 @@ Uzupełnianie parametrów w zsh dla poleceń udev.
 %patch13 -p1
 %patch14 -p1
 %patch15 -p1
-%patch16 -p1
 
 cp -p %{SOURCE2} src/systemd_booted.c
 
This page took 0.401288 seconds and 4 git commands to generate.