base-vbox-glibc64.json 906 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "builders": [
  3. {
  4. "boot_command": [
  5. "<tab><wait>",
  6. "auto autourl=http://{{ .HTTPIP }}:{{ .HTTPPort }}/vagrant.cfg",
  7. "<enter>"
  8. ],
  9. "boot_wait": "5s",
  10. "guest_additions_mode": "disable",
  11. "guest_os_type": "Linux_64",
  12. "http_directory": "http",
  13. "iso_checksum": "sha256:d95d40e1eb13a7776b5319a05660792fddd762662eaecee5df6b8feb3aa9b391",
  14. "iso_url": "https://alpha.de.repo.voidlinux.org/live/20200722/void-live-x86_64-5.7.10_1-20200722.iso",
  15. "shutdown_command": "echo 'vagrant' | sudo -S shutdown -P now",
  16. "ssh_password": "vagrant",
  17. "ssh_timeout": "20m",
  18. "ssh_username": "vagrant",
  19. "type": "virtualbox-iso",
  20. "vboxmanage": [
  21. [
  22. "modifyvm",
  23. "{{.Name}}",
  24. "--nictype1",
  25. "virtio"
  26. ]
  27. ],
  28. "virtualbox_version_file": ".vbox_version"
  29. }
  30. ]
  31. }