|
3 | 3 | - name: ...IS BEGINNING ================================== |
4 | 4 | command: echo |
5 | 5 |
|
| 6 | +- name: Installing Captive Portal |
| 7 | + include_tasks: roles/captive-portal/tasks/main.yml |
| 8 | + when: captive_portal_install |
| 9 | + tags: base, captive-portal, network, domain |
| 10 | + |
6 | 11 | - name: Install dnsmasq |
7 | 12 | include_tasks: roles/network/tasks/dnsmasq.yml |
8 | | - when: dnsmasq_install |
9 | | - tags: base, domain, dnsmasq, network |
| 13 | + when: dnsmasq_install or captive_portal_install |
| 14 | + tags: base, captive-portal, domain, dnsmasq, network |
10 | 15 |
|
11 | 16 | - name: Install named / BIND |
12 | 17 | include_tasks: roles/network/tasks/named.yml |
13 | 18 | when: named_install |
14 | 19 | tags: base, named, network, domain |
15 | 20 |
|
16 | | -- name: Installing captive portal |
17 | | - include_tasks: roles/captive-portal/tasks/main.yml |
18 | | - when: captive_portal_install |
19 | | - tags: base, captive-portal, network, domain |
20 | | - |
21 | 21 | - name: Installing dhcpd |
22 | 22 | include_tasks: roles/network/tasks/dhcpd.yml |
23 | 23 | when: dhcpd_install |
|
28 | 28 | when: squid_install |
29 | 29 | tags: base, squid, network, domain |
30 | 30 |
|
31 | | -- name: Installing Captive Portal |
32 | | - include_tasks: roles/network/tasks/captive_portal.yml |
33 | | - when: py_captive_portal_install |
34 | | - tags: base, captive_portal |
35 | | - |
36 | 31 | # NETWORK moved to the very end, after Stage 9 (9-LOCAL-ADDONS) |
37 | 32 | # It can also be run manually using: cd /opt/iiab/iiab; ./iiab-network |
38 | 33 | # |
|
0 commit comments