ansible-arch-provissionning/defaults/main.yml
vincent f23cf357e4
Some checks failed
continuous-integration/drone/push Build is failing
add inetutils
2021-07-10 11:16:07 +02:00

76 lines
1.4 KiB
YAML

---
# defaults file for ansible-arch-provissionning
partition_table:
- device: "/dev/sda"
label: msdos
settings:
- number: 1
part_end: 512MB
flags: [boot, esp]
fstype: vfat
format: yes
- number: 2
part_start: 512MB
part_end: 1524MB
flags: []
fstype: swap
format: yes
- number: 3
part_start: 1524MB
flags: [lvm]
fstype: ext4
format: yes
#- device: "/dev/sdb"
#settings:
#- number: 1
#name: home
#fstype: ext4
#format:
mount_table:
- device: "/dev/sda"
settings:
- number: 3
mountpath: /mnt
fstype: ext4
- number: 1
mountpath: /mnt/boot
fstype: vfat
provissionning_pacstrap_software:
- base
- base-devel
- net-tools
- wireless_tools
- dialog
- wpa_supplicant
- openssh
- git
- grub
- ansible
- dhcpcd
- efibootmgr
- linux
- linux-firmware
- lvm2
- netctl
- inetutils
provissionning_initramfs_hooks:
- base
- udev
- autodetect
- modconf
- block
- keyboard
- lvm2
- resume
- filesystems
- fsck
provissionning_enable_service:
- sshd
- dhcpcd
system_arch_local_mirror:
#need vfat boot partition with esp label
provissionning_UEFI_Enable: False