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
[Unit] | |
Description=NZBHydra Daemon Service File | |
Documentation=https://github.com/theotherp/nzbhydra | |
After=network.target | |
[Service] | |
User=USER | |
Group=GROUP | |
Type=simple | |
ExecStart=/usr/bin/python /opt/nzbhydra/nzbhydra.py --daemon --nobrowser |
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
[Unit] | |
Description=Sonarr Daemon | |
After=syslog.target network.target | |
[Service] | |
User=server | |
Group=server | |
Type=simple | |
ExecStart=/usr/bin/mono --debug /opt/Sonarr/Sonarr.exe --nobrowser | |
TimeoutStopSec=20 |
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
[Unit] | |
Description=Radarr Daemon | |
After=syslog.target network.target | |
[Service] | |
User=server | |
Group=server | |
Type=simple | |
ExecStart=/usr/bin/mono --debug /opt/Radarr/Radarr.exe --nobrowser | |
TimeoutStopSec=20 |
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
#/bin/bash | |
#The one step installer for the AtoMiC-ToolKit | |
#Written by KnightCinema.com | |
touch /var/log/atomic-install.log | |
echo "Updating APT ..." | |
apt-get -y update > /var/log/atomic-install.log | |
echo "Installing Prerequsits" | |
apt-get -y install git-core nano python-software-properties dialog > /var/log/atomic-install.log | |
dialog --title "The AtoMiC Tool Kit installer" --yesno "This will install the AtomMiC toolkit as well as some prerequsits. Please be aware this software is provided with no warranties. Proceed at your own risk. Would you like to continue?" 8 100 | |
# Cloaning into the OPT folder for organization. |