-
Notifications
You must be signed in to change notification settings - Fork 253
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Admin9705
authored
Oct 14, 2017
1 parent
4424fb9
commit 543747e
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |