Move couchpotato to an ansible role

This commit is contained in:
Dave Stephens 2021-01-20 14:50:45 +00:00
parent d0c8546a2a
commit f2e1d660ab
4 changed files with 21 additions and 12 deletions

View file

@ -24,7 +24,6 @@ tautulli_enabled: false
# Media Sourcing # Media Sourcing
sonarr_enabled: false # tv sonarr_enabled: false # tv
couchpotato_enabled: false
get_iplayer_enabled: false get_iplayer_enabled: false
jackett_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_dl_subscriptions_directory: "{{ downloads_root }}/youtube/subscriptions"
youtubedlmaterial_port_http: "8998" 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 ### OpenVPN

View file

@ -63,6 +63,11 @@
- cloudflare_ddns - cloudflare_ddns
when: (cloudflare_ddns_enabled | default(False)) when: (cloudflare_ddns_enabled | default(False))
- role: couchpotato
tags:
- couchpotato
when: (couchpotato_enabled | default(False))
- role: duplicati - role: duplicati
tags: tags:
- duplicati - duplicati

View 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"