On 2026/07/01 12:27, Mikolaj Kucharski wrote:
> Sometime ago, I think after this year Python upgrades rc.d(8) script
> stopped working with salt minion (I don't have master on -current
> OpenBSD). I see that on OpenBSD 7.9 proctitle works correctly, so it
> was after the 7.9 release.
I don't know about salt, but setproctitle does work properly on -current
$ python3
Python 3.14.6 (main, Jun 28 2026, 14:43:55) [Clang 22.1.6 ] on openbsd7
Type "help", "copyright", "credits" or "license" for more information.
>>> import setproctitle
>>> setproctitle.setproctitle('foo')
>>>
$ pgrep -lf python3
52780 python3: foo
<snip others>