Installation process on macOS #1577
VitaliyYakob
started this conversation in
General
Replies: 1 comment
-
Thanks for the suggestions. Addressing all of them should be doable. I converted this discussion into two issue tickets; |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I used this instruction for deployment, and I have a couple of suggestions for improvement:
Do not use wget to get UnicodeData.txt, this is not the default in macOS, and curl is
curl -O https://www.unicode.org/Public/UCD/latest/ucd/UnicodeData.txt
After completing the "cd build && meson test" step, the user is in the build directory, but in the next step you need to go back to cd..
The last action installation script loads and launches the netatakd daemon using outdated approaches
Running custom install script '/bin/launchctl load -w /Library/LaunchDaemons/io.netatalk.daemon.plist'
man launchctl
I suggest to consider the possibility of using a modern option
launchctl bootstrap system/ /Library/LaunchDaemons/io.netatalk.daemon.plist
launchctl kickstart system/io.netatalk.daemon
Beta Was this translation helpful? Give feedback.
All reactions