runit: don't leak SIGCONT SIG_IGN into all child processes.
This commit is contained in:
parent
fba58d92a5
commit
ea5b73f47d
16
srcpkgs/runit/patches/sigcont.patch
Normal file
16
srcpkgs/runit/patches/sigcont.patch
Normal file
@ -0,0 +1,16 @@
|
||||
runit(8): don't leak SIGCONT SIG_IGN into all child processes
|
||||
|
||||
https://inbox.vuxu.org/supervision/87tug3vzex.fsf@vuxu.org/
|
||||
https://github.com/ksh93/ksh/issues/301
|
||||
|
||||
--- runit-2.1.2/src/runit.c.orig
|
||||
+++ runit-2.1.2/src/runit.c
|
||||
@@ -125,7 +125,7 @@
|
||||
sig_unblock(sig_child);
|
||||
sig_uncatch(sig_child);
|
||||
sig_unblock(sig_cont);
|
||||
- sig_ignore(sig_cont);
|
||||
+ sig_uncatch(sig_cont);
|
||||
sig_unblock(sig_hangup);
|
||||
sig_unblock(sig_int);
|
||||
sig_uncatch(sig_int);
|
@ -1,7 +1,7 @@
|
||||
# Template file for 'runit'
|
||||
pkgname=runit
|
||||
version=2.1.2
|
||||
revision=13
|
||||
revision=14
|
||||
build_wrksrc="${pkgname}-${version}/src"
|
||||
build_style="gnu-makefile"
|
||||
short_desc="UNIX init scheme with service supervision"
|
||||
|
Loading…
Reference in New Issue
Block a user