Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #cloud-config
- autoinstall:
- version: 1
- interactive-sections:
- - 'identity'
- storage:
- config:
- - id: system-disk
- type: disk
- match:
- path: /dev/sda
- ptable: gpt
- preserve: true
- - id: part-efi
- type: partition
- device: system-disk
- size: 1000MB
- number: 1
- grub_device: true
- preserve: true
- - id: part-boot-dummy
- type: partition
- device: system-disk
- size: 1000MB
- number: 2
- preserve: true
- - id: part-root-dummy
- type: partition
- device: system-disk
- size: -1
- number: 3
- preserve: true
- - id: part-boot
- type: device
- path: /dev/sda2
- - id: part-root
- type: device
- path: /dev/mapper/sda3_crypt
- - id: format-efi
- type: format
- volume: part-efi
- fstype: fat32
- label: efi
- - id: format-boot
- type: format
- volume: part-boot
- fstype: ext4
- label: boot
- - id: format-root
- type: format
- volume: part-root
- fstype: btrfs
- label: root
- preserve: true
- - id: mount-root
- type: mount
- device: format-root
- path: /
- options: 'defaults,subvol=/@'
- - id: mount-home
- type: mount
- device: format-root
- path: /home
- options: 'defaults,subvol=/@home'
- - id: mount-boot
- type: mount
- device: format-boot
- path: /boot
- options: 'defaults'
- - id: mount-efi
- type: mount
- device: format-efi
- path: /boot/efi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement