Fix launchd program args
launchd has some weird syntx. Apparently the program needs to be in the ProgramArguments, as Program appears to be ignored.
This commit is contained in:
parent
800fba1037
commit
87c604c1f0
1 changed files with 1 additions and 2 deletions
|
@ -13,10 +13,9 @@
|
||||||
<true/>
|
<true/>
|
||||||
<key>RunAtLoad</key>
|
<key>RunAtLoad</key>
|
||||||
<true/>
|
<true/>
|
||||||
<key>Program</key>
|
|
||||||
<string>/bin/sh</string>
|
|
||||||
<key>ProgramArguments</key>
|
<key>ProgramArguments</key>
|
||||||
<array>
|
<array>
|
||||||
|
<string>/bin/sh</string>
|
||||||
<string>-c</string>
|
<string>-c</string>
|
||||||
<string>/bin/wait4path @bindir@/nix-daemon && @bindir@/nix-daemon</string>
|
<string>/bin/wait4path @bindir@/nix-daemon && @bindir@/nix-daemon</string>
|
||||||
</array>
|
</array>
|
||||||
|
|
Loading…
Reference in a new issue