Skip to content

Commit

Permalink
Update 09b - Ombi v3 (Open Beta)
Browse files Browse the repository at this point in the history
  • Loading branch information
Admin9705 authored Oct 14, 2017
1 parent 4424fb9 commit 543747e
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions 2 - Server Guide/09b - Ombi v3 (Open Beta)
Original file line number Diff line number Diff line change
@@ -1 +1,46 @@
### Ombi v3 is an Open Beta
# Please donate to Jamie - https://www.paypal.me/PlexRequestsNet
# https://github.com/tidusjar/Ombi

### Create Directory, downloading Ombi and Unzipping to Proper Location
sudo apt-get install libunwind8
sudo mkdir /opt/Ombi && cd /opt/Ombi
sudo wget https://ci.appveyor.com/api/buildjobs/6nx945bn7d9nnirg/artifacts/linux.tar.gz
sudo tar -xzf linux.tar.gz
sudo chmod 755 Ombi

################# OMBI SERVICE ################# START
# Creating a service for Sonnar
sudo nano /etc/systemd/system/ombi.service

####### COPY ###### START
[Unit]
Description=Ombi
After=multi-user.target

[Service]
User=root
Group=root
Type=simple
WorkingDirectory=/opt/Ombi/
ExecStart=/opt/Ombi/Ombi
TimeoutStopSec=20
KillMode=process
Restart=on-failure
RemainAfterExit=yes

[Install]
WantedBy=multi-user.target
####### COPY ###### END

# Press CTRL+X to exit and save

# Start the Ombi v3 Service
sudo systemctl daemon-reload
sudo systemctl enable ombi.service
sudo systemctl start ombi.service
sudo systemctl status ombi.service
# Press CTRL+C to exit status message
# To test, goto your http://ipv4address:5000 (Give it up-to 3 minutes)
# To see status of it loading, type: sudo systemctl status ombi.service (or ombi3.service)
################# OMBI SERVICE ################# EN

0 comments on commit 543747e

Please sign in to comment.