mirror of
https://github.com/davestephens/ansible-nas
synced 2025-01-12 03:38:41 +00:00
Move couchpotato to an ansible role
This commit is contained in:
parent
d0c8546a2a
commit
f2e1d660ab
4 changed files with 21 additions and 12 deletions
|
@ -24,7 +24,6 @@ tautulli_enabled: false
|
|||
|
||||
# Media Sourcing
|
||||
sonarr_enabled: false # tv
|
||||
couchpotato_enabled: false
|
||||
|
||||
get_iplayer_enabled: false
|
||||
jackett_enabled: false
|
||||
|
@ -337,17 +336,6 @@ youtubedlmaterial_dl_video_directory: "{{ downloads_root }}/youtube/video"
|
|||
youtubedlmaterial_dl_subscriptions_directory: "{{ downloads_root }}/youtube/subscriptions"
|
||||
youtubedlmaterial_port_http: "8998"
|
||||
|
||||
###
|
||||
### Couchpotato
|
||||
###
|
||||
couchpotato_available_externally: "false"
|
||||
couchpotato_config_directory: "{{ docker_home }}/couchpotato/config"
|
||||
couchpotato_movies_directory: "{{ movies_root }}"
|
||||
couchpotato_downloads_directory: "{{ downloads_root }}"
|
||||
couchpotato_torrents_directory: "{{ torrents_root }}"
|
||||
couchpotato_user_id: "0"
|
||||
couchpotato_group_id: "0"
|
||||
couchpotato_port: "5050"
|
||||
|
||||
###
|
||||
### OpenVPN
|
||||
|
|
5
nas.yml
5
nas.yml
|
@ -63,6 +63,11 @@
|
|||
- cloudflare_ddns
|
||||
when: (cloudflare_ddns_enabled | default(False))
|
||||
|
||||
- role: couchpotato
|
||||
tags:
|
||||
- couchpotato
|
||||
when: (couchpotato_enabled | default(False))
|
||||
|
||||
- role: duplicati
|
||||
tags:
|
||||
- duplicati
|
||||
|
|
16
roles/couchpotato/defaults/main.yml
Normal file
16
roles/couchpotato/defaults/main.yml
Normal file
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
couchpotato_enabled: false
|
||||
couchpotato_available_externally: "false"
|
||||
|
||||
# directories
|
||||
couchpotato_config_directory: "{{ docker_home }}/couchpotato/config"
|
||||
couchpotato_movies_directory: "{{ movies_root }}"
|
||||
couchpotato_downloads_directory: "{{ downloads_root }}"
|
||||
couchpotato_torrents_directory: "{{ torrents_root }}"
|
||||
|
||||
# uid / gid
|
||||
couchpotato_user_id: "0"
|
||||
couchpotato_group_id: "0"
|
||||
|
||||
# network
|
||||
couchpotato_port: "5050"
|
Loading…
Reference in a new issue