2017-08-28 15:31:54 +00:00
|
|
|
---
|
|
|
|
- hosts: all
|
2018-04-08 22:29:25 +00:00
|
|
|
tasks:
|
|
|
|
- import_tasks: tasks/general.yml
|
|
|
|
|
|
|
|
- import_tasks: tasks/docker.yml
|
|
|
|
|
2018-11-25 11:07:09 +00:00
|
|
|
- import_tasks: tasks/traefik.yml
|
|
|
|
when: traefik_enabled == true
|
|
|
|
tags: traefik
|
|
|
|
|
2018-04-08 22:29:25 +00:00
|
|
|
- import_tasks: tasks/portainer.yml
|
|
|
|
when: portainer_enabled == true
|
|
|
|
tags: portainer
|
|
|
|
|
2018-09-22 23:58:59 +00:00
|
|
|
- import_tasks: tasks/plex.yml
|
|
|
|
when: plex_enabled == true
|
|
|
|
tags: plex
|
|
|
|
|
2018-11-11 04:15:03 +00:00
|
|
|
- import_tasks: tasks/emby.yml
|
|
|
|
when: emby_enabled == true
|
|
|
|
tags: emby
|
|
|
|
|
2018-09-23 19:20:10 +00:00
|
|
|
- import_tasks: tasks/tautulli.yml
|
|
|
|
when: tautulli_enabled == true
|
|
|
|
tags: tautulli
|
2018-09-22 23:58:59 +00:00
|
|
|
|
2018-04-08 22:29:25 +00:00
|
|
|
- import_tasks: tasks/transmission.yml
|
|
|
|
when: transmission_enabled == true
|
|
|
|
tags: transmission
|
|
|
|
|
|
|
|
- import_tasks: tasks/transmission_with_openvpn.yml
|
|
|
|
when: transmission_with_openvpn_enabled == true
|
|
|
|
tags: transmission
|
|
|
|
|
|
|
|
- import_tasks: tasks/sonarr.yml
|
|
|
|
when: sonarr_enabled == true
|
|
|
|
tags: sonarr
|
|
|
|
|
2018-04-10 21:57:28 +00:00
|
|
|
- import_tasks: tasks/radarr.yml
|
|
|
|
when: radarr_enabled == true
|
|
|
|
tags: radarr
|
|
|
|
|
2018-04-08 22:29:25 +00:00
|
|
|
- import_tasks: tasks/glances.yml
|
|
|
|
when: glances_enabled == true
|
|
|
|
tags: glances
|
|
|
|
|
|
|
|
- import_tasks: tasks/duplicati.yml
|
|
|
|
when: duplicati_enabled == true
|
|
|
|
tags: duplicati
|
|
|
|
|
|
|
|
- import_tasks: tasks/couchpotato.yml
|
|
|
|
when: couchpotato_enabled == true
|
|
|
|
tags: couchpotato
|
|
|
|
|
|
|
|
- import_tasks: tasks/sickrage.yml
|
|
|
|
when: sickrage_enabled == true
|
|
|
|
tags: sickrage
|
|
|
|
|
|
|
|
- import_tasks: tasks/znc.yml
|
|
|
|
when: znc_enabled == true
|
|
|
|
tags: znc
|
|
|
|
|
2018-09-21 22:37:53 +00:00
|
|
|
- import_tasks: tasks/nextcloud.yml
|
|
|
|
when: nextcloud_enabled == true
|
|
|
|
tags: nextcloud
|
|
|
|
|
2018-10-02 22:03:56 +00:00
|
|
|
- import_tasks: tasks/nginx.yml
|
|
|
|
when: nginx_enabled == true
|
|
|
|
tags: nginx
|
|
|
|
|
2018-11-13 21:07:50 +00:00
|
|
|
- import_tasks: tasks/gitea.yml
|
|
|
|
when: gitea_enabled == true
|
|
|
|
tags: gitea
|
|
|
|
|
2018-04-08 22:29:25 +00:00
|
|
|
- import_tasks: tasks/stats.yml
|
|
|
|
when: stats_enabled == true
|
|
|
|
tags: stats
|
2018-09-23 19:20:10 +00:00
|
|
|
|
2018-11-19 22:58:06 +00:00
|
|
|
- import_tasks: tasks/guacamole.yml
|
|
|
|
when: guacamole_enabled == true
|
|
|
|
tags: guacamole
|
|
|
|
|
2018-09-23 19:20:10 +00:00
|
|
|
roles:
|
|
|
|
- bertvv.samba
|
|
|
|
- geerlingguy.docker
|