Skip to content

Commit

Permalink
Rename to SickChill
Browse files Browse the repository at this point in the history
  • Loading branch information
miigotu committed Oct 12, 2018
1 parent 0bfc7b4 commit 3cbe2b5
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 14 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
build/
.idea/
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# QSickRage
# QSickChill

SickRage server for QNAP NAS.
SickChill server for QNAP NAS.

SickRage server is automatically pulled from git repository when the package is installed. The repository used is https://github.com/SickRage/SickRage/.
SickChill server is automatically pulled from git repository when the package is installed. The repository used is https://github.com/SickChill/SickChill/.

# Install

- Install Git and Python (use the community Python version from http://apps.qnap.community/)
- You can download the latest QPKG packages here https://github.com/SickRage/qnap-sickrage/releases.
- You can download the latest QPKG packages here https://github.com/SickChill/qnap-sickchill/releases.

# Contribute

Expand All @@ -21,12 +21,13 @@ SickRage server is automatically pulled from git repository when the package is

- The package is created under `build/` directory.

- Install it by the AppCenter or via the command line `bash build/QSickRage_*.qpkg`.
- Install it by the AppCenter or via the command line `bash build/QSickChill_*.qpkg`.

# Authors

- clinton-hall
- hadim
- miigotu

# License

Expand Down
2 changes: 1 addition & 1 deletion config/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ twitter_notify_ondownload = 0
twitter_notify_onsubtitledownload = 0
twitter_username = ""
twitter_password = ""
twitter_prefix = SickRage
twitter_prefix = SickChill
[Boxcar]
use_boxcar = 0
boxcar_notify_onsnatch = 0
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
8 changes: 4 additions & 4 deletions qpkg.cfg
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
QPKG_NAME="QSickRage"
QPKG_NAME="QSickChill"
QPKG_VER="1.0"
QPKG_AUTHOR="clinton.hall, hadim"
QPKG_AUTHOR="clinton.hall, hadim, miigotu"
QPKG_LICENSE="GPLv3"
QPKG_SUMMARY="SickRage server for your QNAP NAS from https://github.com/SickRage/SickRage."
QPKG_SUMMARY="SickChill server for your QNAP NAS from https://github.com/SickChill/SickChill."

QPKG_RC_NUM="186"
QPKG_SERVICE_PROGRAM="QSickRage.sh"
QPKG_SERVICE_PROGRAM="QSickChill.sh"

QPKG_REQUIRE="git, qpython2"
QPKG_Conflict="SickBeard-TVRage"
Expand Down
8 changes: 4 additions & 4 deletions shared/QSickRage.sh → shared/QSickChill.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#! /bin/sh

QPKG_NAME=QSickRage
QPKG_NAME=QSickChill
QPKG_DIR=$(/sbin/getcfg $QPKG_NAME Install_Path -f /etc/config/qpkg.conf)
PID_FILE="$QPKG_DIR/config/sickrage.pid"
PID_FILE="$QPKG_DIR/config/sickchill.pid"

DAEMON_OPTS="SickBeard.py --datadir $QPKG_DIR/config --daemon --pidfile $PID_FILE --port 7073"

Expand Down Expand Up @@ -94,8 +94,8 @@ CheckQpkgRunning() { #Is the QPKG already running? if so, exit the script
UpdateQpkg(){ # does a git pull to update to the latest code
/bin/echo "Updating $QPKG_NAME"
#The url to the git repository we're going to install
GIT_URL=git@github.com:SickRage/SickRage.git
GIT_URL1=https://github.com/SickRage/SickRage.git
GIT_URL=git@github.com:SickChill/SickChill.git
GIT_URL1=https://github.com/SickChill/SickChill.git
#git clone/pull the qpkg
[ -d $QPKG_DIR/$QPKG_NAME/.git ] || git clone --depth 1 $GIT_URL $QPKG_DIR/$QPKG_NAME || git clone --depth 1 $GIT_URL1 $QPKG_DIR/$QPKG_NAME
cd $QPKG_DIR/$QPKG_NAME && git reset --hard HEAD && git pull && /bin/sync
Expand Down

0 comments on commit 3cbe2b5

Please sign in to comment.