Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added instructions to service file, and ombi.conf basic #7

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion build/templater/debian/ombi.service
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,18 @@
Description=Ombi - PMS Requests System
After=network-online.target

##!!!Do not edit this file. I mean, go ahead if you really want to.
## what you SHOULD do, is copy this service file to /etc/systemd/system/ombi.service and edit it there.
## or make a new file in /etc/systemd/system/ombi.service.d/local.conf and simply override the parts you want to change.
## and the rest will be defaulted to whats in here.
## Finally, if the above options seem difficult, you can put additional startup options in /etc/default/ombi.conf like this:
##startup_options = "--host http://0.0.0.0:5000 --baseurl /ombi"
[Service]
EnvironmnetFile=-/etc/default/ombi.conf
User=ombi
Group=nogroup
WorkingDirectory=/opt/Ombi/
ExecStart=/opt/Ombi/Ombi --storage /etc/Ombi/
ExecStart=/opt/Ombi/Ombi --storage /etc/Ombi/ ${startup_options}
Type=simple
TimeoutStopSec=30
Restart=on-failure
Expand Down