Building Sick Beard on CentOS 7 Tim's Blog 2015-05-26 I’ve put together a basic installation script for Sick Beard for CentOS 7. I’ve defined the firewall rule to use the internal zone, so if your firewalld configuration differs then you’ll need to modify that part to match accordingly. 123456789101112131415161718192021#!/bin/bash## Install Prerequisitesyum install python python-cheetah git -y## Install Sickbeardadduser sickbeardcd /opt/git clone git://github.com/midgetspy/Sick-Beard.git sickbeardchown -R sickbeard:sickbeard sickbeard/cp sickbeard/init.systemd /etc/systemd/system/sickbeard.service## Firewall Configurationfirewall-cmd --permanent --zone=internal --add-port=8081/tcpfirewall-cmd --reload## Enable & Start the Servicesystemctl enable sickbeardsystemctl start sickbeardexit 0