mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
commit
b443496532
2 changed files with 11 additions and 11 deletions
|
@ -100,42 +100,43 @@
|
||||||
- name: Redhat networking
|
- name: Redhat networking
|
||||||
include_tasks: ifcfg_mods.yml
|
include_tasks: ifcfg_mods.yml
|
||||||
when: is_redhat
|
when: is_redhat
|
||||||
#and not installing
|
#and not installing
|
||||||
tags:
|
tags:
|
||||||
- network
|
- network
|
||||||
|
|
||||||
- name: Netplan in use on Ubuntu 18
|
- name: Netplan in use on Ubuntu 18.04+
|
||||||
include_tasks: netplan.yml
|
include_tasks: netplan.yml
|
||||||
when: is_ubuntu_18
|
when: is_ubuntu and not is_ubuntu_16
|
||||||
#and not installing
|
#when: is_ubuntu_18
|
||||||
|
#and not installing
|
||||||
tags:
|
tags:
|
||||||
- network
|
- network
|
||||||
|
|
||||||
- name: NetworkManager in use
|
- name: NetworkManager in use
|
||||||
include_tasks: NM-debian.yml
|
include_tasks: NM-debian.yml
|
||||||
when: is_debuntu and network_manager_active
|
when: is_debuntu and network_manager_active
|
||||||
#and not installing
|
#and not installing
|
||||||
tags:
|
tags:
|
||||||
- network
|
- network
|
||||||
|
|
||||||
- name: systemd-networkd in use
|
- name: systemd-networkd in use
|
||||||
include_tasks: sysd-netd-debian.yml
|
include_tasks: sysd-netd-debian.yml
|
||||||
when: is_debuntu and systemd_networkd_active
|
when: is_debuntu and systemd_networkd_active
|
||||||
#and not installing
|
#and not installing
|
||||||
tags:
|
tags:
|
||||||
- network
|
- network
|
||||||
|
|
||||||
- name: RPi's have dhcpcd in use
|
- name: RPi's have dhcpcd in use
|
||||||
include_tasks: rpi_debian.yml
|
include_tasks: rpi_debian.yml
|
||||||
when: is_debuntu and is_rpi
|
when: is_debuntu and is_rpi
|
||||||
#and not installing
|
#and not installing
|
||||||
tags:
|
tags:
|
||||||
- network
|
- network
|
||||||
|
|
||||||
- name: Not RPi, Not NetworkManager, Not systemd-networkd in use
|
- name: Not RPi, Not NetworkManager, Not systemd-networkd in use
|
||||||
include_tasks: debian.yml
|
include_tasks: debian.yml
|
||||||
when: (not is_rpi and not network_manager_active and not systemd_networkd_active and is_debuntu) or is_ubuntu_16
|
when: (not is_rpi and not network_manager_active and not systemd_networkd_active and is_debuntu) or is_ubuntu_16
|
||||||
#and not installing
|
#and not installing
|
||||||
tags:
|
tags:
|
||||||
- network
|
- network
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
# netplan.yml
|
- name: Figure out netplan file name
|
||||||
- name: Figure out netplan file name on Ubuntu 18
|
|
||||||
shell: ls /etc/netplan
|
shell: ls /etc/netplan
|
||||||
register: netplan
|
register: netplan
|
||||||
|
|
||||||
|
@ -12,7 +11,7 @@
|
||||||
- name: Remove stock netplan template
|
- name: Remove stock netplan template
|
||||||
file:
|
file:
|
||||||
state: absent
|
state: absent
|
||||||
dest: /etc/netplan/{{ item }}
|
path: /etc/netplan/{{ item }}
|
||||||
with_items:
|
with_items:
|
||||||
- "{{ netplan.stdout_lines }}"
|
- "{{ netplan.stdout_lines }}"
|
||||||
when: netplan.stdout.find("yaml") != -1
|
when: netplan.stdout.find("yaml") != -1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue