1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2024-12-22 15:54:26 +00:00

Updated Autostart on Linux Windows MacOS FreeBSD (markdown)

morpheus65535 2020-11-22 10:37:08 -05:00
parent e66862f1cd
commit 4bd547f3ee

@ -134,7 +134,13 @@ As-is, the LaunchAgent expects bazarr to be cloned or installed at `/Application
The LaunchAgent should be named `com.github.morpheus65535.bazarr.plist` - again, if you'd like something else, update the Label in the file itself as well.
The file is installed to `~/Library/LaunchAgents` and the service will start when the user logs into the system. After installation, the service can be started immediately by running `launchctl load ~/Library/LaunchAgents/com.github.morpheus65535.bazarr.plist`. The service can be stopped by running the same command replacing load with unload.
The file is installed to `/Library/LaunchAgents` and the service will start when the user logs into the system. After installation, the service can be started immediately by running `launchctl load /Library/LaunchAgents/com.github.morpheus65535.bazarr.plist`. The service can be stopped by running the same command replacing load with unload.
Make sure that owner and permissions are properly defined on the plist:
```
sudo chown root:wheel /Library/LaunchAgents/com.github.morpheus65535.bazarr.plist
sudo chmod -R 0644 /Library/LaunchAgents/com.github.morpheus65535.bazarr.plist
```
Logs are written to `/usr/local/var/log/bazarr.log`.