slackbuilds/multimedia/sickchill
Jeremy Hansen 7146e4327f
multimedia/sickchill: Remove unnecessary validators version requirement
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2024-03-23 20:29:37 +07:00
..
README multimedia/sickchill: Added (Video Library Manager). 2023-07-15 17:24:53 +07:00
config.ini multimedia/sickchill: Added (Video Library Manager). 2023-07-15 17:24:53 +07:00
doinst.sh multimedia/sickchill: Added (Video Library Manager). 2023-07-15 17:24:53 +07:00
rc.sickchill multimedia/sickchill: Tweak shutdown/startup/restart for rc file 2024-03-23 20:29:36 +07:00
sickchill.SlackBuild multimedia/sickchill: Remove unnecessary validators version requirement 2024-03-23 20:29:37 +07:00
sickchill.conf multimedia/sickchill: Added (Video Library Manager). 2023-07-15 17:24:53 +07:00
sickchill.info multimedia/sickchill: Version bump to 2024.3.1 2024-03-05 12:44:53 +07:00
slack-desc multimedia/sickchill: Added (Video Library Manager). 2023-07-15 17:24:53 +07:00

README

sickchill (Less rage, more chill.)

Automatic Video Library Manager for TV Shows. It watches for new
episodes of your favorite shows, and when they are posted it does its
magic.

NOTE: Requires sickchill user and group.
 groupadd -g 377 sickchill
 useradd -u 377 -g sickchill -d /var/lib/sickchill -s /bin/false sickchill

If you previously had sickrage installed, please change the user and
group with the following:

 groupmod -n sickchill sickrage
 usermod -l sickchill -g sickchill -d /var/lib/sickchill sickrage 

To have this start up with Slackware, please add the following to your
/etc/rc.d/rc.local:

# Start sickrage
if [ -x /etc/rc.d/rc.sickrage ]; then
  /etc/rc.d/rc.sickrage start
fi

If you want it to shut down properly when Slackware restarts or shuts
down, please add the following to your /etc/rc.d/rc.local_shutdown
(it may need to be created):

# Stop sickrage
if [ -x /etc/rc.d/rc.sickrage ]; then
  /etc/rc.d/rc.sickrage stop
fi