mrrl-containers

MRRL version of container scripts
git clone https://ccx.te2000.cz/git/mrrl-containers
Log | Files | Refs

commit f04898f6450d60cb8ac1d160de96fe1d359fc7fb
parent 07f80095de399f714ef069419ebad59a0dfe8442
Author: Jan Pobříslo <ccx@te2000.cz>
Date:   Thu, 16 Dec 2021 15:38:23 +0000

select() invocation
Diffstat:
Msbin/pidns_run | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sbin/pidns_run b/sbin/pidns_run @@ -60,7 +60,7 @@ def main(argv): if pid == fork2_pid: exit_status(status) try: - r, w, x = select.select(rlist, wlist, elist, timeout=1.0) + r, w, x = select.select(rlist, wlist, elist, 1.0) except select.error as e: code, msg = e.args # We might get interrupted by SIGCHLD here