>I’ve run into a curious problem while trying to package s6 supervision
>suite in a macOS .app bundle. As I’d like the bundle to work regardless
>of the folder it is in (not just in /Applications), I cannot set the
>PATH env variable in the bundle configuraiton (the plist file). Without
>an absolute PATH, s6-svscan cannot find s6-supervise.
I'm not familiar with the way .app bundles operate, can you please
explain? PATH is normally a setting that is set at run time, not at
build/installation time. If you have not used --enable-absolute-paths
in your configure invocation (which, unless you *know* what your
final installation directories will be, you shouldn't), s6-svscan will
rely on the run-time value of PATH to look for s6-supervise, and a
correct configuration will make all binaries accessible via PATH.
This is the standard way Unix applications work; what does macOS do
that prevents it from working?
>Setting the bundle executable to `getcwd PATH s6-svscan` sadly also
>fails, as macOS launchd sets the process cwd to / and argv[0] to naked
>executable name, resulting in PATH being set to /.
Yes, PATH has nothing to do with the cwd of an executable; it is
expected
that it wouldn't work.
>So I modified getcwd into this getdirname utility that is supposed to
>use os-specific mechanisms to find its own path. This solved the
>problem, at least on a mac. Didn’t test on linux yet, though, and have
>no access to a BSD machine.
>
>Wondering if this is of interest to propose as a patch to execline
>repo? I’m not experienced with skarnet coding style, any comments,
>pointers, reviews are most welcome.
Normally, this whole thing should not be necessary. Binaries should be
accessible via the runtime PATH of their caller, that's the convention;
if launchd (or anything else) calls s6-svscan, then it should have
s6-svscan's directory in its PATH, and transmit its PATH to s6-svscan
(which will make s6-supervise accessible).
Short of that, if you know in what directory s6 binaries will reside,
you can hardcode it at configuration time with --enable-absolute-paths.
If neither of these methods work, then MacOS may be on the way to
diverging too much from other Unices to be worth supporting. It's
already
halfway there on several aspects, unfortunately. But breaking PATH is a
big step that I doubt Apple would take without at least a transitional
period, so I think we're missing something here.
--
Laurent
Received on Mon Mar 31 2025 - 19:36:00 CEST