mirror of
https://github.com/davestephens/ansible-nas
synced 2024-11-15 16:28:03 +00:00
86 lines
1.8 KiB
YAML
86 lines
1.8 KiB
YAML
---
|
|
- hosts: all
|
|
tasks:
|
|
- import_tasks: tasks/general.yml
|
|
|
|
- import_tasks: tasks/docker.yml
|
|
|
|
- import_tasks: tasks/traefik.yml
|
|
when: traefik_enabled == true
|
|
tags: traefik
|
|
|
|
- import_tasks: tasks/portainer.yml
|
|
when: portainer_enabled == true
|
|
tags: portainer
|
|
|
|
- import_tasks: tasks/plex.yml
|
|
when: plex_enabled == true
|
|
tags: plex
|
|
|
|
- import_tasks: tasks/emby.yml
|
|
when: emby_enabled == true
|
|
tags: emby
|
|
|
|
- import_tasks: tasks/tautulli.yml
|
|
when: tautulli_enabled == true
|
|
tags: tautulli
|
|
|
|
- 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
|
|
|
|
- import_tasks: tasks/radarr.yml
|
|
when: radarr_enabled == true
|
|
tags: radarr
|
|
|
|
- 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
|
|
|
|
- import_tasks: tasks/nextcloud.yml
|
|
when: nextcloud_enabled == true
|
|
tags: nextcloud
|
|
|
|
- import_tasks: tasks/nginx.yml
|
|
when: nginx_enabled == true
|
|
tags: nginx
|
|
|
|
- import_tasks: tasks/gitea.yml
|
|
when: gitea_enabled == true
|
|
tags: gitea
|
|
|
|
- import_tasks: tasks/stats.yml
|
|
when: stats_enabled == true
|
|
tags: stats
|
|
|
|
- import_tasks: tasks/guacamole.yml
|
|
when: guacamole_enabled == true
|
|
tags: guacamole
|
|
|
|
roles:
|
|
- bertvv.samba
|
|
- geerlingguy.docker
|