autoinstall.cfg 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. #!/bin/sh
  2. # Void Linux Automatic Install Configuration
  3. # ===
  4. # Disk Configuration
  5. # ===
  6. # disk: the disk to install to
  7. # default: the first disk that isn't the installer
  8. #disk=/dev/hda
  9. # bootpartitionsize: controls how large the boot partition will be
  10. # default: 500M
  11. #bootpartitionsize=500M
  12. # swapsize: how large should the swap partition be
  13. # default: equal to the installed physical memory
  14. #swapsize=
  15. # ===
  16. # XBPS Configuration
  17. # ===
  18. # xbpsrepository: which repo should the install pull from
  19. # default: http://alpha.de.repo.voidlinux.org/current
  20. #xbpsrepository="http://alpha.de.repo.voidlinux.org/current"
  21. # pkgs: additional packages to install into the target
  22. # default: none
  23. #pkgs=""
  24. # ===
  25. # Default User
  26. # ===
  27. # username: the username of the user to be created
  28. # default: voidlinux
  29. #username=""
  30. # password: password to set for the new user
  31. # default: unset (will prompt during install)
  32. # Warning: This does not work in musl!
  33. #password=""
  34. # ===
  35. # Misc. Options
  36. # ===
  37. # timezone: Timezone in TZ format
  38. # default: America/Chicago
  39. #timezone="America/Chicago"
  40. # keymap: Keymap to use by default
  41. # default: us
  42. #keymap="us"
  43. # locale: initial glibc locale
  44. # default: en_US.UTF-8
  45. #libclocale=en.US.UTF-8
  46. # hostname: static hostname for the system
  47. # default: derived from DNS
  48. #hostname=VoidLinux
  49. # end_action: what to do at the end of the install
  50. # default: shutdown
  51. # alternate values: reboot, script, func
  52. #end_action=shutdown
  53. # end_script: script to optionally run at end of install
  54. # the user script must reside somewhere xbps-uhelper fetch
  55. # can retrieve it from
  56. # default: not set
  57. #end_script=""
  58. # end_function: a function to optionally be run at
  59. # the end of the install.
  60. #end_function() {
  61. #
  62. #}