Compare commits

...

2 Commits

Author SHA1 Message Date
00c3cd5180 Fix Typo 2025-04-29 20:30:02 +02:00
fef1f44a07 Improve Arch packages + Disable swap before unmounting 2025-04-29 20:28:55 +02:00
2 changed files with 7 additions and 2 deletions

View File

@@ -28,6 +28,7 @@ archlinux:
- cronie
- dhcpcd
- efibootmgr
- fastfetch
- firewalld
- fish
- fzf
@@ -40,7 +41,6 @@ archlinux:
- lsof
- lvm2
- ncdu
- neofetch
- networkmanager
- nfs-utils
- open-vm-tools
@@ -51,9 +51,9 @@ archlinux:
- qemu-guest-agent
- reflector
- rsync
- screen
- sudo
- tldr
- tmux
- vim
- wireguard-tools
- zram-generator

View File

@@ -3,6 +3,11 @@
vars:
ansible_connection: ssh
block:
- name: Disable Swap
ansible.builtin.command: swapoff -a
register: swapoff_result
changed_when: swapoff_result.rc == 0
- name: Unmount /mnt if mounted
ansible.builtin.command: umount -R /mnt
register: unmount_result