From 6079b05db62b18fab4978f4500d860645175ee2c Mon Sep 17 00:00:00 2001 From: Carlos O'Donell Date: Tue, 22 Feb 2022 15:33:20 -0500 Subject: [PATCH] Do not assert if systemctl fails to execute. It should be a soft failure if systemctl fails to execute and we cannot restart all the daemons. --- glibc.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glibc.spec b/glibc.spec index 6b5c599..ca04c97 100644 --- a/glibc.spec +++ b/glibc.spec @@ -2069,7 +2069,7 @@ then local pid = posix.fork() if pid == 0 then posix.redirect2null(2) - assert(posix.exec("%{_prefix}/bin/systemctl", "daemon-reexec")) + posix.exec("%{_prefix}/bin/systemctl", "daemon-reexec") elseif pid > 0 then posix.wait(pid) end