Advertisement
Guest User

Untitled

a guest
Apr 30th, 2024
597
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. #cloud-config
  2. autoinstall:
  3. version: 1
  4. interactive-sections:
  5. - 'identity'
  6. storage:
  7. config:
  8. - id: system-disk
  9. type: disk
  10. match:
  11. path: /dev/sda
  12. ptable: gpt
  13. preserve: true
  14. - id: part-efi
  15. type: partition
  16. device: system-disk
  17. size: 1000MB
  18. number: 1
  19. grub_device: true
  20. preserve: true
  21. - id: part-boot-dummy
  22. type: partition
  23. device: system-disk
  24. size: 1000MB
  25. number: 2
  26. preserve: true
  27. - id: part-root-dummy
  28. type: partition
  29. device: system-disk
  30. size: -1
  31. number: 3
  32. preserve: true
  33. - id: part-boot
  34. type: device
  35. path: /dev/sda2
  36. - id: part-root
  37. type: device
  38. path: /dev/mapper/sda3_crypt
  39. - id: format-efi
  40. type: format
  41. volume: part-efi
  42. fstype: fat32
  43. label: efi
  44. - id: format-boot
  45. type: format
  46. volume: part-boot
  47. fstype: ext4
  48. label: boot
  49. - id: format-root
  50. type: format
  51. volume: part-root
  52. fstype: btrfs
  53. label: root
  54. preserve: true
  55. - id: mount-root
  56. type: mount
  57. device: format-root
  58. path: /
  59. options: 'defaults,subvol=/@'
  60. - id: mount-home
  61. type: mount
  62. device: format-root
  63. path: /home
  64. options: 'defaults,subvol=/@home'
  65. - id: mount-boot
  66. type: mount
  67. device: format-boot
  68. path: /boot
  69. options: 'defaults'
  70. - id: mount-efi
  71. type: mount
  72. device: format-efi
  73. path: /boot/efi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement