Skip to content

Instantly share code, notes, and snippets.

@jknight2014
jknight2014 / nzbhydra.service
Created March 29, 2017 01:20
NZBHydra Systemd Service File
[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
@jknight2014
jknight2014 / sonarr.service
Created March 29, 2017 00:31
Sonarr Systemd Service File
[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
@jknight2014
jknight2014 / radarr.service
Last active March 29, 2017 01:16
Radarr Systemd service file
[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
@jknight2014
jknight2014 / atomicinstall.sh
Last active March 7, 2018 10:49
Installer for the Atomic Toolkit by HTPC Beginner
#/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.