1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 19:52:06 +00:00
iiab/roles/network/tasks/main.yml

132 lines
2.9 KiB
YAML
Raw Normal View History

2017-11-01 12:45:55 +00:00
#- include_vars: roles/network/defaults/main.yml
#- include_vars: vars/local_vars.yml
2017-11-01 12:45:55 +00:00
- include_tasks: detected_network.yml
when: not installing
tags:
- network
- network-discover
2017-11-13 06:20:08 +00:00
- name: RPi hack for AP post install via wifi so the services are right
set_fact:
2017-11-18 17:39:18 +00:00
iiab_lan_iface: br0
iiab_wan_iface: "{{ discovered_wired_iface }}"
iiab_wireless_lan_iface: "{{ discovered_wireless_iface }}"
iiab_wired_lan_iface: ""
2017-11-13 06:20:08 +00:00
when: is_rpi and discovered_wireless_iface is defined and discovered_wireless_iface == iiab_wan_iface
- include_tasks: computed_network.yml
2017-05-27 18:09:50 +00:00
when: not installing
tags:
- network
- network-discover
- include_tasks: hostapd.yml
tags:
- network
- AP
- name: RPi hack for AP post install via wifi don't blow away current network
set_fact:
no_net_restart: True
hostapd_enabled: False
when: is_rpi and discovered_wireless_iface is defined and discovered_wired_iface != iiab_wan_iface
2017-05-27 18:09:50 +00:00
##### Start static ip address info for first run #####
#- include_tasks: static.yml
# when: 'iiab_wan_iface != "none" and wan_ip != "dhcp"'
2017-05-27 18:09:50 +00:00
##### End static ip address info
- include_tasks: hosts.yml
2017-05-27 18:09:50 +00:00
tags:
- network
- hostname
2017-09-24 19:27:06 +00:00
- domain
2017-05-27 18:09:50 +00:00
- name: Configuring wondershaper
include_tasks: wondershaper.yml
when: wondershaper_install
tags: wondershaper, network
- name: (Re)Installing named
include_tasks: named.yml
when: FQDN_changed and iiab_stage|int == 9
- name: (Re)Installing dhcpd
include_tasks: dhcpd.yml
when: FQDN_changed and iiab_stage|int == 9
- name: (Re)Installing Squid
include_tasks: squid.yml
when: FQDN_changed and squid_install and iiab_stage|int == 9
#### start services
- include_tasks: avahi.yml
tags:
- network
- include_tasks: computed_services.yml
tags:
- network
- named
- dhcpd
- dnsmasq
- squid
- include_tasks: enable_services.yml
tags:
- network
- named
- dhcpd
- dnsmasq
- squid
#### end services
#### Start network layout
- include_tasks: ifcfg_mods.yml
2017-05-27 18:09:50 +00:00
tags:
- network
2017-10-31 21:18:16 +00:00
when: is_redhat and not installing
2017-05-27 18:09:50 +00:00
- include_tasks: debian.yml
2017-05-27 18:09:50 +00:00
tags:
- network
2017-11-01 12:45:55 +00:00
when: is_debuntu
#and not is_rpi and not installing
2017-05-27 18:09:50 +00:00
2017-11-01 12:45:55 +00:00
#- include_tasks: rpi_debian.yml
# tags:
# - network
# when: is_debuntu and is_rpi and not installing
- name: Record iiab_wan_device
lineinfile: dest=/etc/iiab/iiab.env
regexp='^IIAB_WAN_DEVICE=*'
line='IIAB_WAN_DEVICE="{{ iiab_wan_iface }}"'
state=present
2017-05-27 18:09:50 +00:00
when: not installing
tags:
- network
- name: Record iiab_lan_device
lineinfile: dest=/etc/iiab/iiab.env
regexp='^IIAB_LAN_DEVICE=*'
line='IIAB_LAN_DEVICE="{{ iiab_lan_iface }}"'
state=present
when: not installing
tags:
- network
#### end network layout
- include_tasks: restart.yml
2017-05-27 18:09:50 +00:00
when: not installing
tags:
- network
2017-09-16 04:43:15 +00:00
- named
- dhcpd
- dnsmasq
- squid
- AP