Sick Beard

From Hack Sphere Labs Wiki
Revision as of 16:21, 29 August 2015 by Webdawg (talk | contribs) (Created page with "=debian jessie= sudo apt-get install python-cheetah mkdir ~/sickbeard cd sickbeard git clone git://github.com/midgetspy/Sick-Beard.git my-sickbeard-install Create a system...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

debian jessie

sudo apt-get install python-cheetah
mkdir ~/sickbeard
cd sickbeard
git clone git://github.com/midgetspy/Sick-Beard.git my-sickbeard-install

Create a systemd service file (adjust below...)

nano /lib/systemd/system/sickbeard.service

File:

    # Sickbeard systemd service unit file
    #
    # Configuration Notes
    #
    #    - Option names (e.g. ExecStart=, Type=) appear to be case-sensitive)
    #
    #    - Adjust ExecStart= to point to your python and Sickbeard executables.
    #
    #    - Adjust User= and Group= to the user/group you want Sickbeard to run as.
    #
    #    - WantedBy= specifies which target (i.e. runlevel) to start Sickbeard for.
    #        multi-user.target equates to runlevel 3 (multi-user text mode)
    #        graphical.target  equates to runlevel 5 (multi-user X11 graphical mode)

    [Unit]
    Description=Internet PVR for your TV Shows

    [Service]
    ExecStart=/usr/bin/python /home/sabnzbd/sickbeard/SickBeard.py
    Type=simple
    User=sabnzbd
    Group=sabnzbd

    [Install]
    WantedBy=multi-user.target