Catching up Sharingan, Geth, and ShadowArch roles

This commit is contained in:
2022-05-25 14:50:16 -05:00
parent 8b2b0be95b
commit 59b54619f7
21 changed files with 509 additions and 1503 deletions

View File

@@ -9,14 +9,21 @@
- name: Static ArchLinux network config
become: yes
when: static
when: static and not tap
template:
src: netctl-static.j2
dest: "/etc/netctl/{{ ipinterface }}"
- name: Tap ArchLinux network config
become: yes
when: tap and not static
template:
src: netctl-tap.j2
dest: "/etc/netctl/{{ ipinterface }}"
- name: Dynamic ArchLinux network config
become: yes
when: static
when: not static and not tap
template:
src: netctl-dhcp.j2
dest: "/etc/netctl/{{ ipinterface }}"