12345678910111213141516171819202122232425262728293031 |
- {
- "builders": [
- {
- "boot_command": [
- "<tab><wait>",
- "auto autourl=http://{{ .HTTPIP }}:{{ .HTTPPort }}/vagrant.cfg",
- "<enter>"
- ],
- "boot_wait": "5s",
- "guest_additions_mode": "disable",
- "guest_os_type": "Linux_64",
- "http_directory": "http",
- "iso_checksum": "sha256:d95d40e1eb13a7776b5319a05660792fddd762662eaecee5df6b8feb3aa9b391",
- "iso_url": "https://alpha.de.repo.voidlinux.org/live/20200722/void-live-x86_64-5.7.10_1-20200722.iso",
- "shutdown_command": "echo 'vagrant' | sudo -S shutdown -P now",
- "ssh_password": "vagrant",
- "ssh_timeout": "20m",
- "ssh_username": "vagrant",
- "type": "virtualbox-iso",
- "vboxmanage": [
- [
- "modifyvm",
- "{{.Name}}",
- "--nictype1",
- "virtio"
- ]
- ],
- "virtualbox_version_file": ".vbox_version"
- }
- ]
- }
|