Chris Kuehl
Chris Kuehl
Hmm, that's not the behavior I see. ## with setsid mode ``` ckuehl@sodium:~$ cat test.sh #!/bin/sh yes > /dev/null & yes > /dev/null ckuehl@sodium:~$ pgrep yes ckuehl@sodium:~$ dumb-init ./test.sh ```...
For dumb-init to exit, you'd either need to send it an uncatchable "terminate" signal (i.e. SIGKILL) or have its immediate child die (cron in your case). The uncatchable signal thing...
Just to clarify, I think the issue is that keepalived is daemonizing, rather than dumb-init?
Awesome, thanks for sending this in! Is this something we should include in the repo or at least mention in the README? We don't use or know too much about...
Hey @bmarroquin, thanks for working on this! We came across this as we're trying to adopt Poetry, but our organization requires that we use a different PyPI registry depending on...
Apologies if this is too off-topic but couldn't find a better place to comment this. In case it's useful to anyone else, we ended up working around this lack of...
Do you have a sense for how hard it is to preserve tox 3 compatibility while also supporting tox 4? Is that something you'd be interested in doing (if we...
I was seeing this error on Ubuntu Jammy and I believe I tracked it down to this change in GCC's default behavior: https://stackoverflow.com/a/69908511 I was able to work around this...
Would there still be interest in fixing this if I could make a PR? I've run into this recently when converting some wheels and have a (draft, quite rough) patch...
I created a draft PR, feedback would be welcome at https://github.com/pypa/auditwheel/pull/443