27 lines
556 B
YAML
27 lines
556 B
YAML
|
---
|
||
|
|
||
|
- name: ArchLinux network packages
|
||
|
become: yes
|
||
|
package:
|
||
|
name:
|
||
|
- netctl
|
||
|
state: present
|
||
|
|
||
|
- name: Static ArchLinux network config
|
||
|
become: yes
|
||
|
when: static
|
||
|
template:
|
||
|
src: netctl-static.j2
|
||
|
dest: "/etc/netctl/{{ ipinterface }}"
|
||
|
|
||
|
- name: Dynamic ArchLinux network config
|
||
|
become: yes
|
||
|
when: static
|
||
|
template:
|
||
|
src: netctl-dhcp.j2
|
||
|
dest: "/etc/netctl/{{ ipinterface }}"
|
||
|
|
||
|
- name: Enable network config
|
||
|
become: yes
|
||
|
command: "netctl enable {{ ipinterface }}"
|