ansible-arch-provissionning/defaults/main.yml

76 lines
1.4 KiB
YAML
Raw Normal View History

2021-03-14 12:41:46 +00:00
---
# defaults file for ansible-arch-provissionning
partition_table:
- device: "/dev/sda"
2021-03-21 11:45:52 +00:00
label: msdos
2021-03-14 12:41:46 +00:00
settings:
- number: 1
part_end: 512MB
flags: [boot, esp]
2021-03-18 21:35:44 +00:00
fstype: vfat
format: yes
2021-03-14 12:41:46 +00:00
- number: 2
part_start: 512MB
2021-03-18 21:35:44 +00:00
part_end: 1524MB
2021-03-21 11:45:52 +00:00
flags: []
2021-03-18 21:35:44 +00:00
fstype: swap
format: yes
- number: 3
part_start: 1524MB
2021-03-14 12:41:46 +00:00
flags: [lvm]
2021-03-18 21:35:44 +00:00
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
2021-07-10 09:16:07 +00:00
- inetutils
2021-03-18 21:35:44 +00:00
provissionning_initramfs_hooks:
- base
- udev
- autodetect
- modconf
- block
- keyboard
- lvm2
- resume
- filesystems
- fsck
provissionning_enable_service:
- sshd
- dhcpcd
system_arch_local_mirror:
2021-03-21 11:45:52 +00:00
#need vfat boot partition with esp label
provissionning_UEFI_Enable: False