1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-15 04:32:11 +00:00

go with keyfile

This commit is contained in:
Jerry Vonau 2017-11-22 18:01:04 -06:00
parent f73585aea1
commit f1f2ffa275

View file

@ -58,23 +58,33 @@
when: dnsmasq_install
# do this
- name: Copy NetworkManager.conf for has_NM
template: dest=/etc/NetworkManager/NetworkManager.conf
src=network/NetworkManager.conf
when: has_NM and iiab_lan_iface == "br0"
#- name: Copy NetworkManager.conf for has_NM
# template: dest=/etc/NetworkManager/NetworkManager.conf
# src=network/NetworkManager.conf
# when: has_NM and iiab_lan_iface == "br0"
#- name: Copy the bridge script for has_NM
# template: dest=/etc/network/interfaces
# src=network/systemd.j2
# when: has_NM and not wan_in_interfaces and iiab_lan_iface == "br0"
# or provide keyfile layout like the XO's used way back.
- name: Create uuid for NM
shell: uuidgen
register: uuid_response
when: has_NM and not wan_in_interfaces and iiab_lan_iface == "br0"
- name: Put the uuid in place
set_fact:
gen_uuid: "{{ uuid_response.stdout_lines[0] }}"
when: has_NM and not wan_in_interfaces and iiab_lan_iface == "br0"
# NM might have a watcher on this path and we don't have to restart NM
- name: Copy the bridge script for has_NM
template: dest=/etc/network/interfaces
src=network/systemd.j2
template: dest=/etc/NetworkManager/system-connections/
src=network/bridge-br0
when: has_NM and not wan_in_interfaces and iiab_lan_iface == "br0"
# or provide keyfile layout like the XO's used way back.
#- name: Copy the bridge script for has_NM
# template: dest=/etc/NetworkManager/system-connections/
# src=network/bridge-br0
# when: has_NM and not wan_in_interfaces and iiab_lan_iface == "br0"
- name: Reload systemd
shell: systemctl daemon-reload