Compare commits

..

No commits in common. "3c94a33ae709b43657146901262730234ed62028" and "2a1a47ecc19e6231901e412aec9dcab9483a842d" have entirely different histories.

4 changed files with 12 additions and 15 deletions

View File

@ -1,6 +1,7 @@
---
almalinux:
- bind-utils
- cloud-init
- dbus-daemon
- dhcp-client
- efibootmgr
@ -24,6 +25,7 @@ almalinux:
archlinux:
- base
- btrfs-progs
- cloud-init
- cronie
- dhcpcd
- efibootmgr
@ -75,6 +77,7 @@ debian11:
- xfsprogs
extra:
- cloud-init
- curl
- firewalld
- fish
@ -112,6 +115,7 @@ debian12:
extra:
- apparmor-utils
- chrony
- cloud-init
- curl
- firewalld
- fish
@ -140,6 +144,7 @@ debian12:
fedora:
- bind-utils
- btrfs-progs
- cloud-init
- cronie
- dhcp-client
- efibootmgr
@ -163,6 +168,7 @@ fedora:
- zstd
rhel8:
- cloud-init
- dhcp-client
- efibootmgr
- grub2
@ -173,10 +179,10 @@ rhel8:
- open-vm-tools
- shim
- telnet
- vim
- zstd
rhel9:
- cloud-init
- dhcp-client
- efibootmgr
- grub2
@ -187,11 +193,11 @@ rhel9:
- open-vm-tools
- shim
- telnet
- vim
- zstd
rocky:
- bind-utils
- cloud-init
- dbus-daemon
- dhcp-client
- efibootmgr
@ -231,6 +237,7 @@ ubuntu:
- apparmor-utils
- bash-completion
- chrony
- cloud-init
- curl
- dnsutils
- firewalld
@ -274,6 +281,7 @@ ubuntu-lts:
- apparmor-utils
- bash-completion
- chrony
- cloud-init
- curl
- dnsutils
- firewalld

View File

@ -1,9 +1,4 @@
---
- name: Unmount /mnt recursively
ansible.builtin.command: umount -l /mnt
changed_when: result.rc == 0
register: result
- name: Setup Cleanup
when: hypervisor == "proxmox"
delegate_to: localhost

View File

@ -204,11 +204,6 @@
changed_when: net_inf.rc == 0
register: net_inf
- name: Register MAC Address of the Network Interface
ansible.builtin.shell: ip link show "{{ net_inf.stdout }}" | awk '/link\/ether/ {print $2}' | tr '[:lower:]' '[:upper:]'
register: net_mac
changed_when: net_mac.rc == 0
- name: Copy NetworkManager keyfile
ansible.builtin.template:
src: network.j2

View File

@ -5,7 +5,6 @@ type=ethernet
interface-name={{ net_inf.stdout }}
[ethernet]
mac-address={{ net_mac.stdout }}
[ipv4]
address={{ vm_ip }},{{ vm_gw }}
@ -13,7 +12,7 @@ dns={{ vm_dns }}
method=manual
[ipv6]
addr-gen-mode=stable-privacy
addr-gen-mode=default
method=disabled
[proxy]
[proxy]