forked from davestephens/ansible-nas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnas.yml
96 lines (72 loc) · 2.09 KB
/
nas.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
---
- hosts: node0
tasks:
- import_tasks: tasks/general.yml
- import_tasks: tasks/docker_networks.yml
- import_tasks: tasks/docker.yml
- import_tasks: tasks/portainer.yml
when: portainer_enabled == true
tags: portainer
- import_tasks: tasks/transmission.yml
when: transmission_enabled == true
tags: transmission
- import_tasks: tasks/deluge.yml
when: deluge_enabled == true
tags: deluge
- 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/stats.yml
when: stats_enabled == true
tags: stats
- import_tasks: tasks/sabnzbd.yml
when: sabnzbd_enabled == true
tags: sabnzbd
- import_tasks: tasks/unifi.yml
when: unifi_enabled == true
tags: unifi
- import_tasks: tasks/plex.yml
when: plex_enabled == true
tags: plex
- import_tasks: tasks/pihole.yml
when: pihole_enabled == true
tags: pihole
- import_tasks: tasks/netatalk.yml
when: netatalk_enabled == true
tags: netatalk
- import_tasks: tasks/heimdall.yml
when: heimdall_enabled == true
tags: heimdall
- import_tasks: tasks/mylar.yml
when: mylar_enabled == true
tags: mylar
- import_tasks: tasks/ubuntu_vdi.yml
when: ubuntu_vdi_enabled == true
tags: vdi
roles:
- { role: bertvv.samba, tags: [samba]}
- geerlingguy.docker