From 543747ee4a6ee1dd49a00e71f74da358477dcb88 Mon Sep 17 00:00:00 2001 From: Admin9705 Date: Sat, 14 Oct 2017 17:58:50 -0400 Subject: [PATCH] Update 09b - Ombi v3 (Open Beta) --- 2 - Server Guide/09b - Ombi v3 (Open Beta) | 45 ++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/2 - Server Guide/09b - Ombi v3 (Open Beta) b/2 - Server Guide/09b - Ombi v3 (Open Beta) index 8b13789179..dfa71d6538 100644 --- a/2 - Server Guide/09b - Ombi v3 (Open Beta) +++ b/2 - Server Guide/09b - Ombi v3 (Open Beta) @@ -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