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 }}"

View File

@@ -19,6 +19,7 @@
- iotop
- lsof
- rsync
- xfsprogs
state: present
update_cache: yes
@@ -107,9 +108,10 @@
become: yes
copy:
content: |
deb http://raspbian.raspberrypi.org/raspbian/ bullseye main contrib non-free rpi
# deb-src http://archive.raspbian.org/raspbian/ stretch main contrib non-free rpi
dest: /etc/apt/sources.list
deb http://archive.raspberrypi.org/debian/ bullseye main
# Uncomment line below then 'apt-get update' to enable 'apt-get source'
#deb-src http://archive.raspberrypi.org/debian/ bullseye main
dest: /etc/apt/sources.list.d/raspi.list
owner: root
group: root
mode: 0644