Advertisement
Guest User

Untitled

a guest
Mar 13th, 2023
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. #cloud-config
  2. autoinstall:
  3. version: 1
  4. locale: en_US.UTF-8
  5. keyboard:
  6. layout: fr
  7. network:
  8. network:
  9. version: 2
  10. ethernets:
  11. eno1:
  12. dhcp4: false
  13. dhcp6: false
  14. addresses:
  15. - XXXXXXX0/25
  16. gateway4: XXXXXXX
  17. nameservers:
  18. addresses: [8.8.8.8, 8.8.4.4]
  19. identity:
  20. hostname: XXXXX
  21. username: XXX
  22. password: $XXXX
  23. storage:
  24. config:
  25. - {ptable: gpt, path: /dev/sda, wipe: superblock, preserve: false, name: '', grub_device: true, type: disk, id: disk-sda}
  26. - {device: disk-sda, size: 512M, flag: boot, number: 1, preserve: false, name: '', grub_device: false, type: partition, id: partition-0}
  27. - {device: disk-sda, size: 20G, flag: '', number: 2, preserve: false, name: '', grub_device: false, type: partition, id: partition-1}
  28. - {fstype: ext4, volume: partition-1, preserve: false, name: root, id: formatting-0, type: format}
  29. - {device: formatting-0, path: /, type: mount}
  30. ssh:
  31. install-server: yes
  32. ssh_pwauth: yes
  33. packages:
  34. - openssh-server
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement