Compare commits

..

2 commits

Author SHA1 Message Date
Timotej Lazar 2b4a196e4d alpine: add whimsy
For what is life without it.
2024-08-16 11:48:10 +02:00
Timotej Lazar 312cd8d4b3 alpine: rename network interfaces
Mostly relevant for VMs, to match the names with proxmox.
2024-08-16 11:47:38 +02:00
3 changed files with 29 additions and 0 deletions

View file

@ -1,3 +1,19 @@
- name: Tell ifupdown to rename network interfaces
copy:
dest: /etc/network/if-pre-up.d/nameif
content: |
#!/bin/sh
nameif -s
mode: 0755
notify: restart networking
- name: Configure interface names
template:
dest: /etc/mactab
src: mactab.j2
mode: 0644
notify: restart networking
- name: Set up network interfaces
template:
dest: /etc/network/interfaces
@ -88,3 +104,8 @@
dest: /etc/logrotate.d/unattended-upgrade
src: unattended-upgrade.logrotate
mode: 0644
- name: Configure MOTD
template:
dest: /etc/motd
src: motd.j2

View file

@ -0,0 +1,3 @@
{% for iface in interfaces | selectattr('mac_address') %}
{{ iface.name }} {{ iface.mac_address | lower }}
{% endfor %}

View file

@ -0,0 +1,5 @@
Welcome to {{ inventory_hostname }}.
Trespassers will be shot.
Survivors will be shot again.