Skip to content

Instantly share code, notes, and snippets.

@beenje
Created July 25, 2019 08:59
Show Gist options
  • Save beenje/e181ae900aad60d6b7a139d2a39feb75 to your computer and use it in GitHub Desktop.
Save beenje/e181ae900aad60d6b7a139d2a39feb75 to your computer and use it in GitHub Desktop.
{
"builders": [
{
"type": "virtualbox-ovf",
"source_path": "https://artifactory.xxxx.xx/artifactory/swi-pkg/virtualbox/1810.01/esss-centos-7.ova",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"ssh_wait_timeout": "1h",
"shutdown_command": "sudo shutdown -P now",
"headless": true,
"format": "ova",
"post_shutdown_delay": "5s",
"vboxmanage": [
["modifyvm", "{{.Name}}", "--memory", "4096"]
],
"vboxmanage_post": [
["modifyvm", "{{.Name}}", "--memory", "4096"],
["modifyvm", "{{.Name}}", "--cpus", "1"],
["modifyvm", "{{.Name}}", "--vram", "64"],
["modifyvm", "{{.Name}}", "--nictype1", "virtio"]
],
"output_directory": "build",
"vm_name": "esss-devenv-7"
}
],
"post-processors": [
[
{
"type": "vagrant",
"keep_input_artifact": true,
"output": "build/esss-devenv-7.box"
}
]
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment