Re: [systemd-devel] Does coredumpctl info support minidebuginfo / gnu_debugdata ?

2024-09-05 Thread Etienne Cordonnier
Hi, for future reference the issue in Fedora was the configuration "ProtectHome=yes" in systemd-coredump's service file (Ubuntu does the same), which makes the home directory invisible to systemd-coredump, and thus "coredumpctl info" shows "n/a" instead of function names in call stacks even if the

Re: [systemd-devel] Is a socket with Accept=yes and ListenFIFO impossible?

2024-09-05 Thread Lennart Poettering
On Do, 05.09.24 12:37, Steve Traylen ([email protected]) wrote: > Was trying to set up a trivial socket and service to process multiple > inputs: > > # Socket emailoutput.socket > [Unit] > Description=Send email via a socket. > > [Socket] > Accept=yes > ListenFIFO=/run/emailoutput.socket > > #

Re: [systemd-devel] Is a socket with Accept=yes and ListenFIFO impossible?

2024-09-05 Thread Mantas Mikulėnas
FIFOs aren't sockets – they do not have an equivalent to accept() and there is no multiplexing of inputs; all writes to the FIFO immediately go to the "listening" file descriptor. So it's almost more like a datagram socket than a stream one, in a sense. If you want a true socket that's filesystem-

[systemd-devel] Is a socket with Accept=yes and ListenFIFO impossible?

2024-09-05 Thread Steve Traylen
Was trying to set up a trivial socket and service to process multiple inputs: # Socket emailoutput.socket [Unit] Description=Send email via a socket. [Socket] Accept=yes ListenFIFO=/run/emailoutput.socket # Service [email protected] [Unit] Description=email [Service] ExecStart=/usr/bin/mai