Change all text instances of sickrage to sickchill

This commit is contained in:
Scott Cariss 2019-04-15 16:38:08 +01:00
parent 7cd801eed5
commit 28f38585ab
No known key found for this signature in database
GPG key ID: 6C3305B41E46C979
7 changed files with 33 additions and 33 deletions

View file

@ -10,7 +10,7 @@ just a stock Ubuntu install, some clever Ansible config and a bunch of Docker co
* An awesome dashboard to your home server (Heimdall) * An awesome dashboard to your home server (Heimdall)
* Any number of Samba shares for you to store your stuff * Any number of Samba shares for you to store your stuff
* A BitTorrent client * A BitTorrent client
* Various media management tools - Sonarr, Sickrage, CouchPotato, Radarr * Various media management tools - Sonarr, Sickchill, CouchPotato, Radarr
* Media streaming via Plex or Emby * Media streaming via Plex or Emby
* Music streaming with Airsonic * Music streaming with Airsonic
* An RSS newsfeed reader - Miniflux * An RSS newsfeed reader - Miniflux
@ -47,7 +47,7 @@ just a stock Ubuntu install, some clever Ansible config and a bunch of Docker co
* [Plex](https://www.plex.tv/) - Plex Media Server * [Plex](https://www.plex.tv/) - Plex Media Server
* [Portainer](https://portainer.io/) - for managing Docker and running custom images * [Portainer](https://portainer.io/) - for managing Docker and running custom images
* [Radarr](https://radarr.video/) - for organising and downloading movies * [Radarr](https://radarr.video/) - for organising and downloading movies
* [Sickrage](https://sickrage.github.io/) - for managing TV episodes * [Sickchill](https://sickchill.github.io/) - for managing TV episodes
* [Sonarr](https://sonarr.tv/) - for downloading and managing TV episodes * [Sonarr](https://sonarr.tv/) - for downloading and managing TV episodes
* [Tautulli](http://tautulli.com/) - Monitor Your Plex Media Server * [Tautulli](http://tautulli.com/) - Monitor Your Plex Media Server
* [Telegraf](https://github.com/influxdata/telegraf) - Metrics collection agent * [Telegraf](https://github.com/influxdata/telegraf) - Metrics collection agent

View file

@ -26,7 +26,7 @@ By default, applications can be found on the ports listed below.
| Plex | 32400 | | | Plex | 32400 | |
| Portainer | 9000 | | | Portainer | 9000 | |
| Radarr | 7878 | | | Radarr | 7878 | |
| Sickrage | 8081 | | | Sickchill | 8081 | |
| Sonarr | 8989 | | | Sonarr | 8989 | |
| Tautulli | 8181 | | | Tautulli | 8181 | |
| The Lounge | 9000 | | | The Lounge | 9000 | |

View file

@ -9,7 +9,7 @@ Ansible config and a bunch of Docker containers. Ansible-NAS was born!
* An awesome dashboard to your home server (Heimdall) * An awesome dashboard to your home server (Heimdall)
* Any number of Samba shares for you to store your stuff * Any number of Samba shares for you to store your stuff
* A BitTorrent client * A BitTorrent client
* Various media management tools - Sonarr, Sickrage, CouchPotato, Radarr * Various media management tools - Sonarr, Sickchill, CouchPotato, Radarr
* Media streaming via Plex, Emby or MiniDLNA * Media streaming via Plex, Emby or MiniDLNA
* Music streaming with Airsonic * Music streaming with Airsonic
* A Dropbox replacement via Nextcloud * A Dropbox replacement via Nextcloud

View file

@ -28,7 +28,7 @@ minidlna_enabled: false
# Media Sourcing # Media Sourcing
sonarr_enabled: false sonarr_enabled: false
sickrage_enabled: false sickchill_enabled: false
couchpotato_enabled: false couchpotato_enabled: false
radarr_enabled: false radarr_enabled: false
get_iplayer_enabled: false get_iplayer_enabled: false
@ -343,14 +343,14 @@ couchpotato_group_id: 0
### ###
### Sickrage ### Sickchill
### ###
sickrage_available_externally: "false" sickchill_available_externally: "false"
sickrage_config_directory: "{{ docker_home }}/sickrage/config" sickchill_config_directory: "{{ docker_home }}/sickchill/config"
sickrage_tv_directory: "{{ tv_root }}" sickchill_tv_directory: "{{ tv_root }}"
sickrage_downloads_directory: "{{ downloads_root }}" sickchill_downloads_directory: "{{ downloads_root }}"
sickrage_user_id: 0 sickchill_user_id: 0
sickrage_group_id: 0 sickchill_group_id: 0
### ###
### Netdata ### Netdata

View file

@ -87,9 +87,9 @@
when: (couchpotato_enabled | default(False)) when: (couchpotato_enabled | default(False))
tags: couchpotato tags: couchpotato
- import_tasks: tasks/sickrage.yml - import_tasks: tasks/sickchill.yml
when: (sickrage_enabled | default(False)) when: (sickchill_enabled | default(False))
tags: sickrage tags: sickchill
- import_tasks: tasks/znc.yml - import_tasks: tasks/znc.yml
when: (znc_enabled | default(False)) when: (znc_enabled | default(False))

View file

@ -1,31 +1,31 @@
--- ---
- name: Create Sickrage Directories - name: Create Sickchill Directories
file: file:
path: "{{ item }}" path: "{{ item }}"
state: directory state: directory
# mode: 0755 # mode: 0755
with_items: with_items:
- "{{ sickrage_config_directory }}" - "{{ sickchill_config_directory }}"
- name: Sickrage Docker Container - name: Sickchill Docker Container
docker_container: docker_container:
name: sickrage name: sickchill
image: linuxserver/sickrage image: linuxserver/sickchill
pull: true pull: true
volumes: volumes:
- "{{ sickrage_config_directory }}:/config:rw" - "{{ sickchill_config_directory }}:/config:rw"
- "{{ sickrage_downloads_directory }}/completed:/downloads:rw" - "{{ sickchill_downloads_directory }}/completed:/downloads:rw"
- "{{ sickrage_tv_directory }}:/tv:rw" - "{{ sickchill_tv_directory }}:/tv:rw"
ports: ports:
- "8081:8081" - "8081:8081"
env: env:
TZ: "{{ ansible_nas_timezone }}" TZ: "{{ ansible_nas_timezone }}"
PUID: "{{ sickrage_user_id }}" PUID: "{{ sickchill_user_id }}"
PGID: "{{ sickrage_group_id }}" PGID: "{{ sickchill_group_id }}"
restart_policy: unless-stopped restart_policy: unless-stopped
memory: 1g memory: 1g
labels: labels:
traefik.backend: "sickrage" traefik.backend: "sickchill"
traefik.frontend.rule: "Host:sickrage.{{ ansible_nas_domain }}" traefik.frontend.rule: "Host:sickchill.{{ ansible_nas_domain }}"
traefik.enable: "{{ sickrage_available_externally }}" traefik.enable: "{{ sickchill_available_externally }}"
traefik.port: "8081" traefik.port: "8081"

View file

@ -196,7 +196,7 @@ onDemand = false # create certificate when container is created
"plex.{{ ansible_nas_domain }}", "plex.{{ ansible_nas_domain }}",
"portainer.{{ ansible_nas_domain }}", "portainer.{{ ansible_nas_domain }}",
"radarr.{{ ansible_nas_domain }}", "radarr.{{ ansible_nas_domain }}",
"sickrage.{{ ansible_nas_domain }}", "sickchill.{{ ansible_nas_domain }}",
"sonarr.{{ ansible_nas_domain }}", "sonarr.{{ ansible_nas_domain }}",
"tautulli.{{ ansible_nas_domain }}", "tautulli.{{ ansible_nas_domain }}",
"thelounge.{{ ansible_nas_domain }}", "thelounge.{{ ansible_nas_domain }}",