diff options
author | Colin Guthrie <colin@mageia.org> | 2014-01-22 23:00:32 +0000 |
---|---|---|
committer | Colin Guthrie <colin@mageia.org> | 2014-01-22 23:20:06 +0000 |
commit | 5d2b909dcdbfd7c44931b153d4e9ea94916e31b1 (patch) | |
tree | 61647ccc13596f3a5704ccf3a4e93ec4e06337a7 | |
parent | e8215985e65b8a600ad93e02bba2477f2030f281 (diff) | |
download | mgaonline-5d2b909dcdbfd7c44931b153d4e9ea94916e31b1.tar mgaonline-5d2b909dcdbfd7c44931b153d4e9ea94916e31b1.tar.gz mgaonline-5d2b909dcdbfd7c44931b153d4e9ea94916e31b1.tar.bz2 mgaonline-5d2b909dcdbfd7c44931b153d4e9ea94916e31b1.tar.xz mgaonline-5d2b909dcdbfd7c44931b153d4e9ea94916e31b1.zip |
Do not exec pkexec but run it so it has a parent process to fix double fork issues mga#11184 mga#12364
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | polkit/Makefile | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,6 @@ +- do not exec pkexec but run it so it has a parent process to fix double fork + issues mga#11184 mga#12364 + Version 3.8 - 22 January 2014, Thierry Vignaud - block CHLD signals on startup in order to prevent glib-threading segfaults diff --git a/polkit/Makefile b/polkit/Makefile index 070f4211..11591ddc 100644 --- a/polkit/Makefile +++ b/polkit/Makefile @@ -13,7 +13,7 @@ clean: rm -f $(WRAPPERS) $(POLICY) %: org.mageia.%.policy.in - @echo -e '#!/bin/sh\nif [[ "$$UID" != "0" ]] ; then\n exec $(BINDIR)/pkexec $(LIBEXECDIR)/$@ "$$''@"\nelse\n exec $(LIBEXECDIR)/$@ "$$''@"\nfi\n' > $@ + @echo -e '#!/bin/sh\nif [[ "$$UID" != "0" ]] ; then\n $(BINDIR)/pkexec $(LIBEXECDIR)/$@ "$$''@"\n exit $$''?\nfi\nexec $(LIBEXECDIR)/$@ "$$''@"\n' > $@ %.policy: %.policy.in intltool-merge --utf8 ../po $< $@ -x -u -c ../po/.intltool-merge-cache |